mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
Remove WineDebugInfo from TEB and fix type of TlsExpansionBitmap in PEB.
svn path=/trunk/; revision=17595
This commit is contained in:
parent
a1e4cc1fd8
commit
bb3b1de38c
1 changed files with 1 additions and 3 deletions
|
@ -250,7 +250,7 @@ typedef struct _PEB
|
||||||
ULONG ImageProcessAffinityMask; /* C0h */
|
ULONG ImageProcessAffinityMask; /* C0h */
|
||||||
ULONG GdiHandleBuffer[0x22]; /* C4h */
|
ULONG GdiHandleBuffer[0x22]; /* C4h */
|
||||||
PVOID PostProcessInitRoutine; /* 14Ch */
|
PVOID PostProcessInitRoutine; /* 14Ch */
|
||||||
PVOID *TlsExpansionBitmap; /* 150h */
|
struct _RTL_BITMAP *TlsExpansionBitmap; /* 150h */
|
||||||
ULONG TlsExpansionBitmapBits[0x20]; /* 154h */
|
ULONG TlsExpansionBitmapBits[0x20]; /* 154h */
|
||||||
ULONG SessionId; /* 1D4h */
|
ULONG SessionId; /* 1D4h */
|
||||||
PVOID AppCompatInfo; /* 1D8h */
|
PVOID AppCompatInfo; /* 1D8h */
|
||||||
|
@ -359,8 +359,6 @@ typedef struct _TEB
|
||||||
PVOID FlsData; /* FB4h */
|
PVOID FlsData; /* FB4h */
|
||||||
UCHAR SafeThunkCall; /* FB8h */
|
UCHAR SafeThunkCall; /* FB8h */
|
||||||
UCHAR BooleanSpare[3]; /* FB9h */
|
UCHAR BooleanSpare[3]; /* FB9h */
|
||||||
/* FIXME: Needed for WINE DLL's */
|
|
||||||
PVOID WineDebugInfo; /* FBCh */
|
|
||||||
} TEB, *PTEB;
|
} TEB, *PTEB;
|
||||||
|
|
||||||
#ifndef NTOS_MODE_USER
|
#ifndef NTOS_MODE_USER
|
||||||
|
|
Loading…
Reference in a new issue