mirror of
https://github.com/reactos/reactos.git
synced 2025-08-04 03:05:40 +00:00
[PSDK]
- Fix a "FIXME! HACK!!!" svn path=/branches/header-work/; revision=47681
This commit is contained in:
parent
4edc0517fc
commit
f19e851716
2 changed files with 26 additions and 2 deletions
|
@ -15,6 +15,32 @@
|
|||
#endif
|
||||
#endif
|
||||
|
||||
#if defined(_MSC_VER) && (_MSC_VER < 1300)
|
||||
#error Old MSVC compiler version.
|
||||
#endif
|
||||
|
||||
#ifdef _MAC
|
||||
#error Not supported.
|
||||
#endif
|
||||
|
||||
#if !defined(MIDL_PASS) && !defined(RC_INVOKED)
|
||||
#define POINTER_64 __ptr64
|
||||
#if defined(_WIN64)
|
||||
#define POINTER_32 __ptr32
|
||||
#else
|
||||
#define POINTER_32
|
||||
#endif
|
||||
#else
|
||||
#define POINTER_64
|
||||
#define POINTER_32
|
||||
#endif /* !defined(MIDL_PASS) && !defined(RC_INVOKED) */
|
||||
|
||||
#if defined(_M_MRX000) || defined(_M_AMD64) || defined(_M_IA64)
|
||||
typedef unsigned __int64 POINTER_64_INT;
|
||||
#else
|
||||
typedef unsigned long POINTER_64_INT;
|
||||
#endif
|
||||
|
||||
#if defined(_WIN64)
|
||||
#define __int3264 __int64
|
||||
#define ADDRESS_TAG_BIT 0x40000000000UI64
|
||||
|
|
|
@ -20,8 +20,6 @@
|
|||
#endif
|
||||
#endif
|
||||
|
||||
typedef unsigned long POINTER_64; // FIXME! HACK!!!
|
||||
|
||||
/* Pseudo Modifiers for Input Parameters */
|
||||
|
||||
#ifndef IN
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue