Commit 09e23379 authored by Alexandre Julliard's avatar Alexandre Julliard

include: Update __MSABI_LONG definition for WINE_NO_LONG_TYPES support.

parent b70375e6
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
/* Macro to deal with LP64 <=> LLP64 differences in numeric constants with 'l' modifier */ /* Macro to deal with LP64 <=> LLP64 differences in numeric constants with 'l' modifier */
#ifndef __MSABI_LONG #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 # define __MSABI_LONG(x) x ## l
# else # else
# define __MSABI_LONG(x) x # define __MSABI_LONG(x) x
......
...@@ -604,7 +604,7 @@ typedef DWORD FLONG; ...@@ -604,7 +604,7 @@ typedef DWORD FLONG;
/* Macro to deal with LP64 <=> LLP64 differences in numeric constants with 'l' modifier */ /* Macro to deal with LP64 <=> LLP64 differences in numeric constants with 'l' modifier */
#ifndef __MSABI_LONG #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 # define __MSABI_LONG(x) x ## l
# else # else
# define __MSABI_LONG(x) x # define __MSABI_LONG(x) x
......
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