include: Update __MSABI_LONG definition for WINE_NO_LONG_TYPES support.
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
b70375e60b
commit
09e233790e
|
@ -22,7 +22,7 @@
|
|||
|
||||
/* Macro to deal with LP64 <=> LLP64 differences in numeric constants with 'l' modifier */
|
||||
#ifndef __MSABI_LONG
|
||||
# if defined(_MSC_VER) || defined(__MINGW32__) || defined(__CYGWIN__)
|
||||
#if !defined(__LP64__) && !defined(WINE_NO_LONG_TYPES)
|
||||
# define __MSABI_LONG(x) x ## l
|
||||
# else
|
||||
# define __MSABI_LONG(x) x
|
||||
|
|
|
@ -604,7 +604,7 @@ typedef DWORD FLONG;
|
|||
|
||||
/* Macro to deal with LP64 <=> LLP64 differences in numeric constants with 'l' modifier */
|
||||
#ifndef __MSABI_LONG
|
||||
# if defined(_MSC_VER) || defined(__MINGW32__) || defined(__CYGWIN__)
|
||||
#if !defined(__LP64__) && !defined(WINE_NO_LONG_TYPES)
|
||||
# define __MSABI_LONG(x) x ## l
|
||||
# else
|
||||
# define __MSABI_LONG(x) x
|
||||
|
|
Loading…
Reference in New Issue