PORTAB.H
上传用户:tuheem
上传日期:2007-05-01
资源大小:21889k
文件大小:0k
源码类别:

多媒体编程

开发平台:

Visual C++

  1. #ifndef _PORTAB_H_
  2. #define _PORTAB_H_
  3. #ifdef WIN32
  4. #ifndef NULL
  5. #ifdef  __cplusplus
  6. #define NULL    0
  7. #else
  8. #define NULL    ((void *)0)
  9. #endif
  10. #endif
  11. #define int8_t char
  12. #define uint8_t unsigned char
  13. #define int16_t short
  14. #define uint16_t unsigned short
  15. #define int32_t int
  16. #define uint32_t unsigned int 
  17. #define int64_t __int64
  18. #define uint64_t unsigned __int64
  19. #else // WIN32
  20. #include <inttypes.h>
  21. #endif 
  22. #endif // _PORTAB_H_