Commit 9ae62731 authored by Alexandre Julliard's avatar Alexandre Julliard

include: Define all the __int* types also for msvcrt.

parent 19d5734e
...@@ -51,12 +51,23 @@ ...@@ -51,12 +51,23 @@
#include <sal.h> #include <sal.h>
#if !defined(_MSC_VER) && !defined(__int64) #ifndef _MSC_VER
# if defined(_WIN64) && !defined(__MINGW64__) # ifndef __int8
# define __int64 long # define __int8 char
# else # endif
# define __int64 long long # ifndef __int16
# endif # define __int16 short
# endif
# ifndef __int32
# define __int32 int
# endif
# ifndef __int64
# if defined(_WIN64) && !defined(__MINGW64__)
# define __int64 long
# else
# define __int64 long long
# endif
# endif
#endif #endif
#ifndef NULL #ifndef NULL
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment