Changeset 1067 for trunk/include
- Timestamp:
- Sep 27, 1999, 12:24:51 AM (26 years ago)
- Location:
- trunk/include
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/win/thread.h
r320 r1067 1 /* $Id: thread.h,v 1. 5 1999-07-17 09:19:15sandervl Exp $ */1 /* $Id: thread.h,v 1.6 1999-09-26 22:24:51 sandervl Exp $ */ 2 2 3 3 /* … … 10 10 #define __WINE_THREAD_H 11 11 12 #ifdef __WIN32OS2__ 13 #define TLS_MINIMUM_AVAILABLE 64 14 #ifndef __OS2_H__ 15 #include "config.h" 16 #include "winbase.h" 17 #endif 18 #else 12 19 #include "config.h" 13 20 #include "winbase.h" 14 //#include "selectors.h" /* for SET_FS */ 15 16 #ifdef __WIN32OS2__ 17 #define TLS_MINIMUM_AVAILABLE 64 21 #include "selectors.h" /* for SET_FS */ 18 22 #endif 19 23 … … 100 104 ULONG hmq; // Thread message queue 101 105 ULONG hab; // Thread Anchor block 106 BOOL fMsgTranslated; // TranslateMessage called for this message? 102 107 #endif 103 108 } THDB; -
trunk/include/win32type.h
r999 r1067 1 /* $Id: win32type.h,v 1.2 1 1999-09-21 11:56:04 phallerExp $ */1 /* $Id: win32type.h,v 1.22 1999-09-26 22:24:50 sandervl Exp $ */ 2 2 3 3 /* … … 358 358 #define HDRV16 WORD 359 359 #define HINSTANCE16 WORD 360 #define HQUEUE16 WORD 360 361 361 362 // other … … 608 609 #endif 609 610 611 /* Could this type be considered opaque? */ 612 typedef struct { 613 LPVOID DebugInfo; 614 LONG LockCount; 615 LONG RecursionCount; 616 HANDLE OwningThread; 617 HANDLE LockSemaphore; 618 DWORD Reserved; 619 }CRITICAL_SECTION; 620 610 621 #pragma pack() 611 622 -
trunk/include/winconst.h
r1056 r1067 1 /* $Id: winconst.h,v 1. 9 1999-09-26 10:09:25sandervl Exp $ */1 /* $Id: winconst.h,v 1.10 1999-09-26 22:24:51 sandervl Exp $ */ 2 2 3 3 /* … … 220 220 #define SB_RIGHT_W 7 221 221 #define SB_ENDSCROLL_W 8 222 223 /* WM_SYSCOMMAND parameters */ 224 #define SC_SIZE_W 0xf000 225 #define SC_MOVE_W 0xf010 226 #define SC_MINIMIZE_W 0xf020 227 #define SC_MAXIMIZE_W 0xf030 228 #define SC_NEXTWINDOW_W 0xf040 229 #define SC_PREVWINDOW_W 0xf050 230 #define SC_CLOSE_W 0xf060 231 #define SC_VSCROLL_W 0xf070 232 #define SC_HSCROLL_W 0xf080 233 #define SC_MOUSEMENU_W 0xf090 234 #define SC_KEYMENU_W 0xf100 235 #define SC_ARRANGE_W 0xf110 236 #define SC_RESTORE_W 0xf120 237 #define SC_TASKLIST_W 0xf130 238 #define SC_SCREENSAVE_W 0xf140 239 #define SC_HOTKEY_W 0xf150 -
trunk/include/wprocess.h
r953 r1067 1 /* $Id: wprocess.h,v 1. 7 1999-09-15 23:29:09sandervl Exp $ */1 /* $Id: wprocess.h,v 1.8 1999-09-26 22:24:51 sandervl Exp $ */ 2 2 /* 3 3 * Process help functions … … 14 14 #define WIN32_TIBSEL 15 15 16 #ifdef OS2_INCLUDED 17 typedef DWORD TEB; 18 typedef DWORD THDB; 19 #else 16 #ifndef OS2_INCLUDED 20 17 #include <winprocess.h> 18 #endif 21 19 #include <thread.h> 22 #endif23 20 24 21 TEB *InitializeTIB(BOOL fMainThread = FALSE);
Note:
See TracChangeset
for help on using the changeset viewer.