mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 12:53:09 +00:00
[OPENGL32]
- Implement storing thread data into the TEB CORE-14024
This commit is contained in:
parent
1bfbdb6123
commit
6aaf217b10
7 changed files with 437 additions and 357 deletions
|
@ -736,6 +736,7 @@ OFFSET(TEB_SELF, TEB, NtTib.Self),
|
|||
OFFSET(TEB_PEB, TEB, ProcessEnvironmentBlock),
|
||||
OFFSET(TEB_EXCEPTION_CODE, TEB, ExceptionCode),
|
||||
OFFSET(TEB_ACTIVATION_CONTEXT_STACK_POINTER, TEB, ActivationContextStackPointer),
|
||||
OFFSET(TEB_GL_TABLE, TEB, glTable),
|
||||
OFFSET(TEB_DEALLOCATION_STACK, TEB, DeallocationStack),
|
||||
OFFSET(TEB_GDI_BATCH_COUNT, TEB, GdiBatchCount),
|
||||
OFFSET(TEB_GUARANTEED_STACK_BYTES, TEB, GuaranteedStackBytes),
|
||||
|
|
|
@ -414,6 +414,7 @@ Author:
|
|||
#define TEB_PEB 0x30
|
||||
#define TEB_EXCEPTION_CODE 0x1A4
|
||||
#define TEB_ACTIVATION_CONTEXT_STACK_POINTER 0x1A8
|
||||
#define TEB_GL_TABLE 0xBE8
|
||||
#define TEB_DEALLOCATION_STACK 0xE0C
|
||||
#define TEB_GDI_BATCH_COUNT 0xF70
|
||||
#define TEB_GUARANTEED_STACK_BYTES 0xF78
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue