mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 17:05:46 +00:00
[XDK][DDK]
* Handle the rest of cases about the order of pragma and symbol declaration. svn path=/trunk/; revision=64151
This commit is contained in:
parent
3ff848136a
commit
00ad9c4760
9 changed files with 12 additions and 12 deletions
|
@ -1670,8 +1670,8 @@ typedef struct {
|
|||
extern HAL_DISPATCH HalDispatchTable;
|
||||
#define HALDISPATCH (&HalDispatchTable)
|
||||
#else
|
||||
extern PHAL_DISPATCH HalDispatchTable;
|
||||
__CREATE_NTOS_DATA_IMPORT_ALIAS(HalDispatchTable)
|
||||
extern PHAL_DISPATCH HalDispatchTable;
|
||||
#define HALDISPATCH HalDispatchTable
|
||||
#endif
|
||||
|
||||
|
|
|
@ -8396,8 +8396,8 @@ FsRtlRemovePerFileObjectContext(
|
|||
extern const UCHAR * const FsRtlLegalAnsiCharacterArray;
|
||||
#define LEGAL_ANSI_CHARACTER_ARRAY FsRtlLegalAnsiCharacterArray
|
||||
#else
|
||||
extern const UCHAR * const *FsRtlLegalAnsiCharacterArray;
|
||||
__CREATE_NTOS_DATA_IMPORT_ALIAS(FsRtlLegalAnsiCharacterArray)
|
||||
extern const UCHAR * const *FsRtlLegalAnsiCharacterArray;
|
||||
#define LEGAL_ANSI_CHARACTER_ARRAY (*FsRtlLegalAnsiCharacterArray)
|
||||
#endif
|
||||
|
||||
|
@ -10993,8 +10993,8 @@ HalGetDmaAlignmentRequirement(
|
|||
extern PUSHORT NlsOemLeadByteInfo;
|
||||
#define NLS_OEM_LEAD_BYTE_INFO NlsOemLeadByteInfo
|
||||
#else
|
||||
extern PUSHORT *NlsOemLeadByteInfo;
|
||||
__CREATE_NTOS_DATA_IMPORT_ALIAS(NlsOemLeadByteInfo)
|
||||
extern PUSHORT *NlsOemLeadByteInfo;
|
||||
#define NLS_OEM_LEAD_BYTE_INFO (*NlsOemLeadByteInfo)
|
||||
#endif
|
||||
|
||||
|
|
|
@ -1661,8 +1661,8 @@ extern NTSYSAPI volatile CCHAR KeNumberProcessors;
|
|||
#elif (NTDDI_VERSION >= NTDDI_WINXP)
|
||||
extern NTSYSAPI CCHAR KeNumberProcessors;
|
||||
#else
|
||||
extern PCCHAR KeNumberProcessors;
|
||||
__CREATE_NTOS_DATA_IMPORT_ALIAS(KeNumberProcessors)
|
||||
extern PCCHAR KeNumberProcessors;
|
||||
#endif
|
||||
|
||||
|
||||
|
@ -1815,8 +1815,8 @@ typedef enum _MM_SYSTEM_SIZE {
|
|||
} MM_SYSTEMSIZE;
|
||||
|
||||
#ifndef _NTSYSTEM_
|
||||
extern PBOOLEAN Mm64BitPhysicalAddress;
|
||||
__CREATE_NTOS_DATA_IMPORT_ALIAS(Mm64BitPhysicalAddress)
|
||||
extern PBOOLEAN Mm64BitPhysicalAddress;
|
||||
#endif
|
||||
extern NTKERNELAPI PVOID MmBadPointer;
|
||||
|
||||
|
|
|
@ -1584,8 +1584,8 @@ FsRtlRemovePerFileObjectContext(
|
|||
extern const UCHAR * const FsRtlLegalAnsiCharacterArray;
|
||||
#define LEGAL_ANSI_CHARACTER_ARRAY FsRtlLegalAnsiCharacterArray
|
||||
#else
|
||||
extern const UCHAR * const *FsRtlLegalAnsiCharacterArray;
|
||||
__CREATE_NTOS_DATA_IMPORT_ALIAS(FsRtlLegalAnsiCharacterArray)
|
||||
extern const UCHAR * const *FsRtlLegalAnsiCharacterArray;
|
||||
#define LEGAL_ANSI_CHARACTER_ARRAY (*FsRtlLegalAnsiCharacterArray)
|
||||
#endif
|
||||
|
||||
|
|
|
@ -273,8 +273,8 @@ typedef struct {
|
|||
extern HAL_DISPATCH HalDispatchTable;
|
||||
#define HALDISPATCH (&HalDispatchTable)
|
||||
#else
|
||||
extern PHAL_DISPATCH HalDispatchTable;
|
||||
__CREATE_NTOS_DATA_IMPORT_ALIAS(HalDispatchTable)
|
||||
extern PHAL_DISPATCH HalDispatchTable;
|
||||
#define HALDISPATCH HalDispatchTable
|
||||
#endif
|
||||
|
||||
|
|
|
@ -125,11 +125,11 @@ extern BOOLEAN KdDebuggerEnabled;
|
|||
extern BOOLEAN KdDebuggerNotPresent;
|
||||
#define KD_DEBUGGER_NOT_PRESENT KdDebuggerNotPresent
|
||||
#else
|
||||
extern BOOLEAN *KdDebuggerEnabled;
|
||||
__CREATE_NTOS_DATA_IMPORT_ALIAS(KdDebuggerEnabled)
|
||||
extern BOOLEAN *KdDebuggerEnabled;
|
||||
#define KD_DEBUGGER_ENABLED (*KdDebuggerEnabled)
|
||||
extern BOOLEAN *KdDebuggerNotPresent;
|
||||
__CREATE_NTOS_DATA_IMPORT_ALIAS(KdDebuggerNotPresent)
|
||||
extern BOOLEAN *KdDebuggerNotPresent;
|
||||
#define KD_DEBUGGER_NOT_PRESENT (*KdDebuggerNotPresent)
|
||||
#endif
|
||||
|
||||
|
|
|
@ -986,8 +986,8 @@ extern NTSYSAPI volatile CCHAR KeNumberProcessors;
|
|||
#elif (NTDDI_VERSION >= NTDDI_WINXP)
|
||||
extern NTSYSAPI CCHAR KeNumberProcessors;
|
||||
#else
|
||||
extern PCCHAR KeNumberProcessors;
|
||||
__CREATE_NTOS_DATA_IMPORT_ALIAS(KeNumberProcessors)
|
||||
extern PCCHAR KeNumberProcessors;
|
||||
#endif
|
||||
|
||||
$endif (_WDMDDK_)
|
||||
|
|
|
@ -148,8 +148,8 @@ typedef enum _MM_SYSTEM_SIZE {
|
|||
} MM_SYSTEMSIZE;
|
||||
|
||||
#ifndef _NTSYSTEM_
|
||||
extern PBOOLEAN Mm64BitPhysicalAddress;
|
||||
__CREATE_NTOS_DATA_IMPORT_ALIAS(Mm64BitPhysicalAddress)
|
||||
extern PBOOLEAN Mm64BitPhysicalAddress;
|
||||
#endif
|
||||
extern NTKERNELAPI PVOID MmBadPointer;
|
||||
|
||||
|
|
|
@ -1128,8 +1128,8 @@ HalGetDmaAlignmentRequirement(
|
|||
extern PUSHORT NlsOemLeadByteInfo;
|
||||
#define NLS_OEM_LEAD_BYTE_INFO NlsOemLeadByteInfo
|
||||
#else
|
||||
extern PUSHORT *NlsOemLeadByteInfo;
|
||||
__CREATE_NTOS_DATA_IMPORT_ALIAS(NlsOemLeadByteInfo)
|
||||
extern PUSHORT *NlsOemLeadByteInfo;
|
||||
#define NLS_OEM_LEAD_BYTE_INFO (*NlsOemLeadByteInfo)
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Reference in a new issue