00001 00008 #ifndef __WINSUPPORT_H 00009 #define __WINSUPPORT_H 00010 00011 #ifdef _WIN32 00012 00013 #include <stdarg.h> 00014 00015 #define __const const 00016 00017 typedef unsigned int uint32_t; 00018 typedef unsigned short uint16_t; 00019 typedef unsigned char uint8_t; 00020 00021 #define snprintf _snprintf 00022 #define asprintf _asprintf 00023 00024 int _asprintf(char**, const char*, ...); 00025 00026 #endif /* _WIN32 */ 00027 00028 #endif /* __WINSUPPORT_H */