00001 #ifndef QPID_SYS_WINDOWS_INTEGERTYPES_H
00002 #define QPID_SYS_WINDOWS_INTEGERTYPES_H
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024 typedef unsigned char uint8_t;
00025 typedef char int8_t;
00026 typedef unsigned short uint16_t;
00027 typedef short int16_t;
00028 typedef unsigned int uint32_t;
00029 typedef int int32_t;
00030 typedef unsigned __int64 uint64_t;
00031 typedef __int64 int64_t;
00032
00033
00034 typedef unsigned int uint;
00035
00036 #endif