Changeset 10012 for trunk/include/win/thread.h
- Timestamp:
- Apr 11, 2003, 4:22:06 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/win/thread.h
r9927 r10012 66 66 DWORD selman_list; /* 1-n 10 Selector manager list */ 67 67 DWORD user_ptr; /* 12n 14 User pointer */ 68 /* end of NT_TIB */ 68 /* end of NT_TIB */ 69 69 struct _TEB *self; /* 12- 18 Pointer to this structure */ 70 70 WORD tibflags; /* 1!n 1c Flags (NT: EnvironmentPointer) */ … … 130 130 ULONG newWindow; // Pointer to window object of window that was just created 131 131 void* pWsockData; // Winsock data pointer (NULL if unused) 132 132 133 133 // used for PM-to-Win32 message translation 134 134 PVOID pMessageBuffer; // MessageBuffer object … … 145 145 BOOL fWM_SETFOCUS; // set during WM_SETFOCUS message processing 146 146 HWND hwndFocus; // set during WM_SETFOCUS message processing 147 147 148 148 DWORD pidDebuggee; // process id of debuggee 149 149 DWORD logfile; // last FILE ptr used for logging (for exception handling in vfprintf) … … 152 152 BOOL fIgnoreMsgs; // set to true if waiting in WaitForSingleObject 153 153 154 CONTEXT context; // thread context 154 CONTEXT context; // thread context 155 155 char savedopcode; // saved instruction 156 156 LPVOID lpAlias; // alias 157 157 DWORD dwAliasOffset; // offset 158 159 /** @name Special message handling. 160 * @{ */ 161 /** WM_COPYDATA - Must keep it around while it's being processed. 162 * Freeing it upon the arrival. Nested WM_COPYDATA isn't supported. 163 */ 164 void * pWM_COPYDATA; 165 //@} 166 158 167 #ifdef DEBUG 159 168 // used for call stack tracking
Note:
See TracChangeset
for help on using the changeset viewer.