Changeset 10379 for trunk/src/user32/win32wbase.h
- Timestamp:
- Jan 11, 2004, 1:04:44 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/win32wbase.h
r10316 r10379 1 /* $Id: win32wbase.h,v 1.15 6 2003-11-12 14:10:21sandervl Exp $ */1 /* $Id: win32wbase.h,v 1.157 2004-01-11 12:03:20 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Window Base Class for OS/2 … … 258 258 void setOldPMWindowProc(PVOID pfnPMWndProc) { pfnOldPMWndProc = pfnPMWndProc; }; 259 259 260 260 virtual HWND GetWindow(UINT uCmd); 261 261 virtual BOOL EnableWindow(BOOL fEnable); 262 262 BOOL CloseWindow(); … … 377 377 HWND OS2Hwnd, OS2HwndFrame; 378 378 HMENU hSysMenu; 379 HWND Win32Hwnd ;379 HWND Win32Hwnd, Win32HwndOrg; 380 380 381 381 int posx, posy, width, height; … … 520 520 //Temporary hack for CS_CLASSDC style (do the same as for CS_OWNDC) 521 521 #ifndef OS2_INCLUDED 522 BOOL isOwnDC() { return (windowClass && windowClass->getStyle() & (CS_OWNDC|CS_CLASSDC)); }522 BOOL isOwnDC() { return (windowClass && (windowClass->getStyle() & (CS_OWNDC|CS_CLASSDC))); } 523 523 #else 524 BOOL isOwnDC() { return (windowClass && windowClass->getStyle() & (CS_OWNDC_W|CS_CLASSDC_W)); }524 BOOL isOwnDC() { return (windowClass && (windowClass->getStyle() & (CS_OWNDC_W|CS_CLASSDC_W))); } 525 525 #endif 526 526
Note:
See TracChangeset
for help on using the changeset viewer.