include: Define all the __int* types also for msvcrt.
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
19d5734e20
commit
9ae627316d
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue