Skip to content
Snippets Groups Projects
Commit 6a28adb4 authored by Steven Edwards's avatar Steven Edwards Committed by Alexandre Julliard
Browse files

Fix for lots of warnings when building on Mingw32.

parent aff3a8b3
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment