PORTAB.H
资源名称:VC++视频传输.rar [点击查看]
上传用户:hxb_1234
上传日期:2010-03-30
资源大小:8328k
文件大小:0k
源码类别:
VC书籍
开发平台:
Visual C++
- #ifndef _PORTAB_H_
- #define _PORTAB_H_
- #ifdef WIN32
- #ifndef NULL
- #ifdef __cplusplus
- #define NULL 0
- #else
- #define NULL ((void *)0)
- #endif
- #endif
- #define int8_t char
- #define uint8_t unsigned char
- #define int16_t short
- #define uint16_t unsigned short
- #define int32_t int
- #define uint32_t unsigned int
- #define int64_t __int64
- #define uint64_t unsigned __int64
- #else // WIN32
- #include <inttypes.h>
- #endif
- #endif // _PORTAB_H_