Changeset 9101 for trunk/src/user32/win32wbase.h
- Timestamp:
- Aug 23, 2002, 5:06:01 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/win32wbase.h
r8553 r9101 1 /* $Id: win32wbase.h,v 1.14 3 2002-06-02 19:34:36sandervl Exp $ */1 /* $Id: win32wbase.h,v 1.144 2002-08-23 15:06:01 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Window Base Class for OS/2 … … 73 73 //NOTE Must be smaller than WIN32APP_POSTMSG! 74 74 #define WIN32APP_SETFOCUSMSG (WIN32APP_POSTMSG-1) 75 #define WIN32APP_POSTPONEDESTROY (WIN32APP_POSTMSG-2) 75 76 76 77 #define WIN32MSG_MAGICA 0x12345678 … … 284 285 BOOL IsWindowDestroyed() { return state >= STATE_DESTROYED; }; 285 286 BOOL IsWindowIconic(); 287 288 //hack alert (see DestroyWindow) 289 BOOL IsChildDestructionInProgress() { return fChildDestructionInProgress; }; 290 void SetChildDestructionInProgress(BOOL fDestuctionInProgress) 291 { 292 fChildDestructionInProgress = fDestuctionInProgress; 293 }; 294 //hack end 295 286 296 //Window procedure type 287 297 BOOL IsWindowUnicode(); … … 415 425 fParentChange:1, 416 426 fDestroyWindowCalled:1, //DestroyWindow was called for this window 427 fChildDestructionInProgress:1, 417 428 fTaskList:1, //should be listed in PM tasklist or not 418 429 fXDefault:1,
Note:
See TracChangeset
for help on using the changeset viewer.