Changeset 903 for trunk/src/user32/new/window.cpp
- Timestamp:
- Sep 10, 1999, 9:00:11 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/new/window.cpp
r833 r903 1 /* $Id: window.cpp,v 1.2 3 1999-09-05 12:03:34 sandervlExp $ */1 /* $Id: window.cpp,v 1.24 1999-09-10 19:00:11 dengert Exp $ */ 2 2 /* 3 3 * Win32 window apis for OS/2 … … 73 73 // Wine seems to assume it's a string though... 74 74 if(!stricmp(className, MDICLIENTCLASSNAMEA)) { 75 75 window = (Win32BaseWindow *) new Win32MDIClientWindow(&cs, classAtom, FALSE); 76 76 } 77 77 else { 78 78 window = new Win32BaseWindow( &cs, classAtom, FALSE ); 79 79 } 80 80 if(window == NULL) … … 137 137 // Wine seems to assume it's a string though... 138 138 if(!lstrcmpW(className, (LPWSTR)MDICLIENTCLASSNAMEW)) { 139 139 window = (Win32BaseWindow *) new Win32MDIClientWindow(&cs, classAtom, TRUE); 140 140 } 141 141 else { 142 142 window = new Win32BaseWindow( &cs, classAtom, TRUE ); 143 143 } 144 144 if(window == NULL) … … 821 821 *****************************************************************************/ 822 822 823 HWND WIN32API ChildWindowFromPointEx (HWND hwndParent, POINT pt, UINT uFlags) 823 HWND WIN32API ChildWindowFromPointEx (HWND hwndParent, POINT pt, UINT uFlags) 824 824 { 825 825 RECT rect; … … 995 995 //****************************************************************************** 996 996 //****************************************************************************** 997 #if 0 997 998 BOOL WIN32API GetUpdateRect( HWND hwnd, PRECT lpRect, BOOL bErase) 998 999 { … … 1002 1003 return OSLibWinQueryUpdateRect(Win32BaseWindow::Win32ToOS2Handle(hwnd), lpRect); 1003 1004 } 1005 #endif 1004 1006 //****************************************************************************** 1005 1007 //******************************************************************************
Note:
See TracChangeset
for help on using the changeset viewer.