From bb3b1de38cf79c8637fadf0168e85ea1c7b06feb Mon Sep 17 00:00:00 2001 From: Filip Navara Date: Mon, 29 Aug 2005 22:23:55 +0000 Subject: [PATCH] Remove WineDebugInfo from TEB and fix type of TlsExpansionBitmap in PEB. svn path=/trunk/; revision=17595 --- reactos/include/ndk/pstypes.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/reactos/include/ndk/pstypes.h b/reactos/include/ndk/pstypes.h index 2d72cd1f14c..8fa7aec7bfc 100644 --- a/reactos/include/ndk/pstypes.h +++ b/reactos/include/ndk/pstypes.h @@ -250,7 +250,7 @@ typedef struct _PEB ULONG ImageProcessAffinityMask; /* C0h */ ULONG GdiHandleBuffer[0x22]; /* C4h */ PVOID PostProcessInitRoutine; /* 14Ch */ - PVOID *TlsExpansionBitmap; /* 150h */ + struct _RTL_BITMAP *TlsExpansionBitmap; /* 150h */ ULONG TlsExpansionBitmapBits[0x20]; /* 154h */ ULONG SessionId; /* 1D4h */ PVOID AppCompatInfo; /* 1D8h */ @@ -359,8 +359,6 @@ typedef struct _TEB PVOID FlsData; /* FB4h */ UCHAR SafeThunkCall; /* FB8h */ UCHAR BooleanSpare[3]; /* FB9h */ - /* FIXME: Needed for WINE DLL's */ - PVOID WineDebugInfo; /* FBCh */ } TEB, *PTEB; #ifndef NTOS_MODE_USER