00001 /* 00002 * Synergy compatible API -- common result codes. 00003 * 00004 * Copyright (C) 2010 Cambridge Silicon Radio Ltd. 00005 * 00006 * Refer to LICENSE.txt included with this source code for details on 00007 * the license terms. 00008 */ 00009 #ifndef CSR_RESULT_H__ 00010 #define CSR_RESULT_H__ 00011 00012 typedef CsrUint16 CsrResult; 00013 #define CSR_RESULT_SUCCESS ((CsrResult) 0x0000) 00014 #define CSR_RESULT_FAILURE ((CsrResult) 0xffff) 00015 00016 #endif