Get rid of the TEB flags, they are no longer used.

diff --git a/include/thread.h b/include/thread.h
index cdc3b6d..8a0cf48 100644
--- a/include/thread.h
+++ b/include/thread.h
@@ -61,8 +61,7 @@
 typedef struct _TEB
 {
     NT_TIB       Tib;            /* 12-  00 Thread information block */
-    WORD         tibflags;       /* 1!n  1c Flags (NT: EnvironmentPointer) */
-    WORD         mutex_count;    /* 1-n  1e Win16 mutex count */
+    PVOID        EnvironmentPointer; /* 12-  1c EnvironmentPointer (win95: tib flags + win16 mutex count) */
     CLIENT_ID    ClientId;       /* -2-  20 Process and thread id (win95: debug context) */
     HQUEUE16     queue;          /* 1!-  28 Message queue (NT: DWORD ActiveRpcHandle)*/
     WORD         pad1;           /* --n  2a */
@@ -134,10 +133,6 @@
 } TEB;
 #endif /* WINE_TEB_DEFINED */
 
-/* Thread exception flags */
-#define TEBF_WIN32  0x0001
-#define TEBF_TRAP   0x0002
-
 /* scheduler/thread.c */
 extern TEB *THREAD_InitStack( TEB *teb, DWORD stack_size );