mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 08:25:03 +00:00
[NTDDK]
- Group related definitions. [XDK] - Add PCI_CAPABILITIES_HEADER. [WDM] - Update wdm.h to reflect XDK changes. svn path=/branches/header-work/; revision=46260
This commit is contained in:
parent
0c6a2ac923
commit
0d6a8c1681
3 changed files with 16 additions and 6 deletions
|
@ -5533,6 +5533,12 @@ KeGetCurrentProcessorNumber(VOID)
|
|||
return (ULONG)__readfsbyte(FIELD_OFFSET(KPCR, Number));
|
||||
}
|
||||
|
||||
typedef enum _INTERLOCKED_RESULT {
|
||||
ResultNegative = RESULT_NEGATIVE,
|
||||
ResultZero = RESULT_ZERO,
|
||||
ResultPositive = RESULT_POSITIVE
|
||||
} INTERLOCKED_RESULT;
|
||||
|
||||
NTKERNELAPI
|
||||
INTERLOCKED_RESULT
|
||||
FASTCALL
|
||||
|
@ -5638,12 +5644,6 @@ KeGetCurrentProcessorNumber(VOID)
|
|||
|
||||
#endif /* _AMD64_ */
|
||||
|
||||
typedef enum _INTERLOCKED_RESULT {
|
||||
ResultNegative = RESULT_NEGATIVE,
|
||||
ResultZero = RESULT_ZERO,
|
||||
ResultPositive = RESULT_POSITIVE
|
||||
} INTERLOCKED_RESULT;
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
|
|
@ -3089,6 +3089,11 @@ typedef struct _SHARE_ACCESS {
|
|||
} type2; \
|
||||
} u;
|
||||
|
||||
typedef struct _PCI_CAPABILITIES_HEADER {
|
||||
UCHAR CapabilityID;
|
||||
UCHAR Next;
|
||||
} PCI_CAPABILITIES_HEADER, *PPCI_CAPABILITIES_HEADER;
|
||||
|
||||
typedef struct _PCI_COMMON_HEADER {
|
||||
PCI_COMMON_HEADER_LAYOUT
|
||||
} PCI_COMMON_HEADER, *PPCI_COMMON_HEADER;
|
||||
|
|
|
@ -478,6 +478,11 @@ typedef struct _SHARE_ACCESS {
|
|||
} type2; \
|
||||
} u;
|
||||
|
||||
typedef struct _PCI_CAPABILITIES_HEADER {
|
||||
UCHAR CapabilityID;
|
||||
UCHAR Next;
|
||||
} PCI_CAPABILITIES_HEADER, *PPCI_CAPABILITIES_HEADER;
|
||||
|
||||
typedef struct _PCI_COMMON_HEADER {
|
||||
PCI_COMMON_HEADER_LAYOUT
|
||||
} PCI_COMMON_HEADER, *PPCI_COMMON_HEADER;
|
||||
|
|
Loading…
Reference in a new issue