Changeset 1297 for trunk/src/user32/oslibwin.cpp
- Timestamp:
- Oct 14, 1999, 8:27:59 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/oslibwin.cpp
r1281 r1297 1 /* $Id: oslibwin.cpp,v 1.2 7 1999-10-14 09:22:40sandervl Exp $ */1 /* $Id: oslibwin.cpp,v 1.28 1999-10-14 18:27:57 sandervl Exp $ */ 2 2 /* 3 3 * Window API wrappers for OS/2 … … 43 43 //****************************************************************************** 44 44 //****************************************************************************** 45 BOOL OSLibWinSetOwner(HWND hwnd, HWND hwndOwner) 46 { 47 return WinSetOwner(hwnd, hwndOwner); 48 } 49 //****************************************************************************** 50 //****************************************************************************** 45 51 HWND OSLibWinCreateWindow(HWND hwndParent, ULONG dwWinStyle, ULONG dwFrameStyle, 46 char *pszName, HWND Owner, ULONG fHWND_BOTTOM, HWND *hwndFrame) 52 char *pszName, HWND Owner, ULONG fHWND_BOTTOM, HWND *hwndFrame, 53 ULONG id) 47 54 { 48 55 HWND hwndClient; … … 73 80 *hwndFrame = WinCreateStdWindow(hwndParent, dwWinStyle, 74 81 &dwFrameStyle, WIN32_STDCLASS, 75 "", dwClientStyle, 0, 0, &hwndClient);82 "", dwClientStyle, 0, id, &hwndClient); 76 83 if(*hwndFrame) { 77 84 if(pszName) { … … 320 327 BOOL OSLibWinShowWindow(HWND hwnd, ULONG fl) 321 328 { 322 BOOL rc ;329 BOOL rc = 1; 323 330 324 331 if(fl & SWP_SHOW) {
Note:
See TracChangeset
for help on using the changeset viewer.