config_types.h
上传用户:wstnjxml
上传日期:2014-04-03
资源大小:7248k
文件大小:1k
源码类别:

Windows CE

开发平台:

C/C++

  1. #ifndef __CONFIG_TYPES_H__ #define __CONFIG_TYPES_H__ typedef unsigned char mpc_bool_t; #define TRUE  1 #define FALSE 0
  2. #ifdef _MSC_VER
  3. #define inline __inline
  4. typedef signed long int32_t;
  5. typedef unsigned long uint32_t;  
  6. typedef signed short int16_t; 
  7. typedef unsigned short uint16_t; 
  8. typedef signed __int64 int64_t;
  9. #else
  10. #ifdef __SYMBIAN32__
  11. #ifndef __PORTAB_H
  12. typedef signed long int32_t;
  13. typedef unsigned long uint32_t;  
  14. typedef signed short int16_t; 
  15. typedef unsigned short uint16_t; 
  16. typedef signed long long int64_t;
  17. #endif
  18. #else
  19. #include <stdint.h>
  20. #endif
  21. #define __cdecl
  22. #endif
  23. typedef int16_t mpc_int16_t; typedef uint16_t mpc_uint16_t; typedef int32_t mpc_int32_t; typedef uint32_t mpc_uint32_t; typedef int64_t mpc_int64_t; #endif