Fix for lots of warnings when building on Mingw32.

oldstable
Steven Edwards 2002-08-27 00:32:43 +00:00 committed by Alexandre Julliard
parent aff3a8b371
commit 6a28adb40f
1 changed files with 5 additions and 0 deletions

View File

@ -44,7 +44,12 @@ extern "C" {
typedef char __int8;
typedef short __int16;
typedef int __int32;
#ifndef __MINGW__
typedef long long __int64;
#else
/* Using a typedef can tweak bugs in the C++ parser under Mingw32 */
#define __int64 long long
#endif /* !defined(__MINGW__) */
#endif /* !defined(_MSC_VER) */
typedef unsigned char __uint8;