00001 #ifndef LIBWPD_TYPES_H 00002 #define LIBWPD_TYPES_H 00003 00004 #ifdef _MSC_VER 00005 typedef signed char int8_t; 00006 typedef unsigned char uint8_t; 00007 typedef signed short int16_t; 00008 typedef unsigned short uint16_t; 00009 typedef signed int int32_t; 00010 typedef unsigned int uint32_t; 00011 #else /* _MSC_VER */ 00012 #include <inttypes.h> 00013 #endif /* _MSC_VER */ 00014 00015 #endif /* LIBWPD_TYPES_H */