From aeb420d9f20f0973d428b5de0bd19f83c684bf54 Mon Sep 17 00:00:00 2001 From: pixel Date: Tue, 29 Jan 2008 10:13:13 +0000 Subject: Smoothing up win32 fixes. --- mpqlib-stdint.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 mpqlib-stdint.h (limited to 'mpqlib-stdint.h') diff --git a/mpqlib-stdint.h b/mpqlib-stdint.h new file mode 100644 index 0000000..1dc4e2d --- /dev/null +++ b/mpqlib-stdint.h @@ -0,0 +1,14 @@ +#ifndef __STD_INT_H_ +#define __STD_INT_H_ + +#ifdef WIN32 +typedef unsigned char uint8_t; +typedef unsigned short int uint16_t; +typedef signed long int int32_t; +typedef unsigned long int uint32_t; +typedef unsigned __int64 uint64_t; +#else +#include +#endif + +#endif -- cgit v1.2.3