mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 22:56:00 +00:00
modified include/psdk/windows.h
modified include/psdk/winnt.h Visual C++ needs love, too. Extend conditional w32api code for Watcom C to Visual C++ svn path=/trunk/; revision=42472
This commit is contained in:
parent
578de69cda
commit
90ae79bfc0
2 changed files with 3 additions and 3 deletions
|
@ -101,7 +101,7 @@
|
|||
#endif
|
||||
#ifndef NOGDI
|
||||
#if !defined (__OBJC__)
|
||||
#if (defined(__GNUC__) && (__GNUC__ >= 3)) || defined (__WATCOMC__)
|
||||
#if (defined(__GNUC__) && (__GNUC__ >= 3)) || defined (__WATCOMC__) || defined(_MSC_VER)
|
||||
#include <ole2.h>
|
||||
#endif
|
||||
#endif /* __OBJC__ */
|
||||
|
|
|
@ -197,7 +197,7 @@ typedef WORD LANGID;
|
|||
#endif
|
||||
#undef __int64
|
||||
#define __int64 long long
|
||||
#elif defined(__WATCOMC__) && (defined(_INTEGRAL_MAX_BITS) && _INTEGRAL_MAX_BITS >= 64 )
|
||||
#elif (defined(__WATCOMC__) || defined(_MSC_VER)) && (defined(_INTEGRAL_MAX_BITS) && _INTEGRAL_MAX_BITS >= 64 )
|
||||
#define _HAVE_INT64
|
||||
#endif /* __GNUC__/__WATCOMC */
|
||||
#if defined(_HAVE_INT64) || (defined(_INTEGRAL_MAX_BITS) && _INTEGRAL_MAX_BITS >= 64)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue