Changeset 9694 for trunk/src/user32/oslibwin.cpp
- Timestamp:
- Jan 20, 2003, 1:09:47 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/oslibwin.cpp
r9598 r9694 1 /* $Id: oslibwin.cpp,v 1.13 7 2003-01-03 16:35:55sandervl Exp $ */1 /* $Id: oslibwin.cpp,v 1.138 2003-01-20 12:09:47 sandervl Exp $ */ 2 2 /* 3 3 * Window API wrappers for OS/2 … … 105 105 WinCreateFrameControls(*hwndFrame, &FCData, NULL); 106 106 } 107 if(*hwndFrame == 0) { 108 dprintf(("Frame window creation failed!! OS LastError %0x", WinGetLastError(0))); 109 return 0; 110 } 107 111 hwndClient = WinCreateWindow (*hwndFrame, WIN32_STDCLASS, 108 112 NULL, dwWinStyle | WS_VISIBLE, 0, 0, 0, 0, … … 112 116 if (hwndParent == HWND_DESKTOP && *hwndFrame) 113 117 OSLibWinCreateInvisibleScroller(*hwndFrame, SBS_VERT); 118 119 120 if(hwndClient == 0) { 121 dprintf(("Client window creation failed!! OS LastError %0x", WinGetLastError(0))); 122 } 114 123 return hwndClient; 115 124 } … … 1214 1223 swctrl.fbJump = SWL_JUMPABLE; 1215 1224 swctrl.bProgType = PROG_PM; 1225 dprintf(("OSLibWinChangeTaskList %x %s swctrl %x size %d", hTaskList, title, &swctrl, sizeof(swctrl))); 1216 1226 if(title) { 1217 1227 CharToOemBuffA( title, swctrl.szSwtitle, min(strlen(title)+1,MAXNAMEL+4) ); … … 1222 1232 swctrl.uchVisibility = SWL_INVISIBLE; 1223 1233 } 1234 dprintf(("hwnd %x", swctrl.hwnd)); 1235 dprintf(("hwndIcon %x", swctrl.hwndIcon)); 1236 dprintf(("hprog %x", swctrl.hprog)); 1237 dprintf(("idProcess %x", swctrl.idProcess)); 1238 dprintf(("idSession %x", swctrl.idSession)); 1239 dprintf(("uchVisibility %x", swctrl.uchVisibility)); 1240 dprintf(("fbJump %x", swctrl.fbJump)); 1241 dprintf(("bProgType %x", swctrl.bProgType)); 1242 dprintf(("szSwtitle %s", swctrl.szSwtitle)); 1243 1224 1244 return (WinChangeSwitchEntry(hTaskList, &swctrl)) ? FALSE : TRUE; 1225 1245 }
Note:
See TracChangeset
for help on using the changeset viewer.