mirror of
https://github.com/reactos/reactos.git
synced 2025-06-04 08:50:27 +00:00
Add NT_TIB32/64
svn path=/branches/ros-amd64-bringup/; revision=44500
This commit is contained in:
parent
f657f33288
commit
8c8c4fcf16
2 changed files with 52 additions and 0 deletions
|
@ -4585,6 +4585,32 @@ typedef struct _NT_TIB {
|
|||
struct _NT_TIB *Self;
|
||||
} NT_TIB, *PNT_TIB;
|
||||
|
||||
typedef struct _NT_TIB32 {
|
||||
ULONG ExceptionList;
|
||||
ULONG StackBase;
|
||||
ULONG StackLimit;
|
||||
ULONG SubSystemTib;
|
||||
union {
|
||||
ULONG FiberData;
|
||||
ULONG Version;
|
||||
};
|
||||
ULONG ArbitraryUserPointer;
|
||||
ULONG Self;
|
||||
} NT_TIB32,*PNT_TIB32;
|
||||
|
||||
typedef struct _NT_TIB64 {
|
||||
ULONG64 ExceptionList;
|
||||
ULONG64 StackBase;
|
||||
ULONG64 StackLimit;
|
||||
ULONG64 SubSystemTib;
|
||||
union {
|
||||
ULONG64 FiberData;
|
||||
ULONG Version;
|
||||
};
|
||||
ULONG64 ArbitraryUserPointer;
|
||||
ULONG64 Self;
|
||||
} NT_TIB64,*PNT_TIB64;
|
||||
|
||||
typedef enum _PROCESSINFOCLASS {
|
||||
ProcessBasicInformation,
|
||||
ProcessQuotaLimits,
|
||||
|
|
|
@ -4165,6 +4165,32 @@ typedef struct _NT_TIB {
|
|||
struct _NT_TIB *Self;
|
||||
} NT_TIB,*PNT_TIB;
|
||||
|
||||
typedef struct _NT_TIB32 {
|
||||
DWORD ExceptionList;
|
||||
DWORD StackBase;
|
||||
DWORD StackLimit;
|
||||
DWORD SubSystemTib;
|
||||
union {
|
||||
DWORD FiberData;
|
||||
DWORD Version;
|
||||
};
|
||||
DWORD ArbitraryUserPointer;
|
||||
DWORD Self;
|
||||
} NT_TIB32,*PNT_TIB32;
|
||||
|
||||
typedef struct _NT_TIB64 {
|
||||
DWORD64 ExceptionList;
|
||||
DWORD64 StackBase;
|
||||
DWORD64 StackLimit;
|
||||
DWORD64 SubSystemTib;
|
||||
union {
|
||||
DWORD64 FiberData;
|
||||
DWORD Version;
|
||||
};
|
||||
DWORD64 ArbitraryUserPointer;
|
||||
DWORD64 Self;
|
||||
} NT_TIB64,*PNT_TIB64;
|
||||
|
||||
typedef struct _REPARSE_GUID_DATA_BUFFER {
|
||||
DWORD ReparseTag;
|
||||
WORD ReparseDataLength;
|
||||
|
|
Loading…
Reference in a new issue