Changeset 2203 for trunk/include/win/thread.h
- Timestamp:
- Dec 26, 1999, 6:28:36 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/win/thread.h
r2196 r2203 1 /* $Id: thread.h,v 1.1 0 1999-12-24 18:38:20 sandervlExp $ */1 /* $Id: thread.h,v 1.11 1999-12-26 17:28:35 cbratschi Exp $ */ 2 2 3 3 /* … … 11 11 12 12 #ifdef __WIN32OS2__ 13 #define TLS_MINIMUM_AVAILABLE 13 #define TLS_MINIMUM_AVAILABLE 64 14 14 #ifndef __OS2_H__ 15 15 #include "config.h" … … 101 101 struct _THDB *next; /* Global thread list */ 102 102 #ifdef __WIN32OS2__ 103 DWORD OrgTIBSel; 104 ULONG hmq; 103 DWORD OrgTIBSel; // Original OS/2 TIB selector (always the same, but let's not assume too much for future compatibility) 104 ULONG hmq; // Thread message queue 105 105 ULONG hab; // Thread Anchor block 106 106 ULONG hooks[WH_NB_HOOKS]; //list of hooks for this thread queue … … 108 108 ULONG newWindow; // Pointer to window object of window that was just created 109 109 void* pWsockData; // Winsock data pointer (NULL if unused) 110 WINDOWPOS wp; // Used by message translation for WM_WINDOWPOSCHANGED 110 DWORD lParam; // MessageExtraInfo 111 WINDOWPOS wp; // Used by message translation for WM_WINDOWPOSCHANGED 111 112 ULONG nrOfMsgs; // Usually 1; some PM messages can generated more than 1 win32 msg 112 113 BOOL fTranslated; // WM_CHAR already translated or not 113 114 ULONG msgstate; // odd -> dispatchmessage called, even -> not called 114 MSG msg; 115 MSG msg; // Used by message translation to store translated PM message (sent to win32 window proc in pmwindow.cpp) 115 116 MSG msgWCHAR; // Used to store extra WM_CHAR message generated by TranslateMessage 116 117 #endif
Note:
See TracChangeset
for help on using the changeset viewer.