summaryrefslogtreecommitdiff
path: root/src/common/cbasetypes.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/cbasetypes.h')
-rw-r--r--src/common/cbasetypes.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/common/cbasetypes.h b/src/common/cbasetypes.h
index b84a0c88e..505eb6752 100644
--- a/src/common/cbasetypes.h
+++ b/src/common/cbasetypes.h
@@ -91,14 +91,9 @@ typedef int* pint;
//////////////////////////////
#ifdef WIN32
//////////////////////////////
-//These three are already redefined on my_global.h on Windows systems.
-#ifdef TXT_ONLY
typedef __int8 int8;
-typedef __int32 int32;
-typedef unsigned __int32 uint32;
-#endif
-
typedef __int16 int16;
+typedef __int32 int32;
typedef signed __int8 sint8;
typedef signed __int16 sint16;
@@ -106,6 +101,7 @@ typedef signed __int32 sint32;
typedef unsigned __int8 uint8;
typedef unsigned __int16 uint16;
+typedef unsigned __int32 uint32;
//////////////////////////////
#else // GNU
//////////////////////////////