00001 /***************************************************************************** 00002 C H E A D E R F I L E 00003 00004 Copyright (c) 2003 Neuros Audio LLC, All rights reserved. 00005 00006 ******************************************************************************/ 00007 00009 // 00010 // C type definition header file. 00011 // 00012 // <B>REVISION</B> 00013 // @li 09/24/2003 M.GAO <br> 00014 // Initial creation. 00015 00016 #ifndef CTYPE__H 00017 #define CTYPE__H 00018 00019 /*---------------------------------------------------------------------------*/ 00020 #ifdef __cplusplus 00021 extern "C" { 00022 #endif 00023 00024 /*-- HEADER FILE INCLUDES ---------------------------------------------------*/ 00025 #include "stdio.h" 00026 #include "stdlib.h" 00027 00028 /*-- SHARED DEFINITIONS -----------------------------------------------------*/ 00029 00030 #define ULONG unsigned long 00031 #define UINT unsigned int 00032 #define USHORT unsigned short 00033 #define UCHAR unsigned char 00034 #define UINT16 unsigned int 00035 #define SINT16 signed int 00036 #define UINT32 unsigned long 00037 #define SINT32 signed long 00038 #define BOOL UCHAR 00039 00040 #ifndef TRUE 00041 #define TRUE (1) 00042 #define FALSE (0) 00043 #endif 00044 00045 #ifndef OFF 00046 #define OFF (0) 00047 #define ON (1) 00048 #endif 00049 00050 /*---------------------------------------------------------------------------*/ 00051 #ifdef __cplusplus 00052 } 00053 #endif 00054 00055 /*---------------------------------------------------------------------------*/ 00056 #endif /* CTYPE__H */ 00057 00058 /***************************************************************************** 00059 Neuros Audio LLC. Confidential Proprietary 00060 *****************************************************************************/ 00061
1.3.9.1