Changeset 3250 for trunk/src/user32/oslibwin.cpp
- Timestamp:
- Mar 27, 2000, 5:09:22 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/oslibwin.cpp
r3144 r3250 1 /* $Id: oslibwin.cpp,v 1.7 1 2000-03-17 17:12:08cbratschi Exp $ */1 /* $Id: oslibwin.cpp,v 1.72 2000-03-27 15:06:29 cbratschi Exp $ */ 2 2 /* 3 3 * Window API wrappers for OS/2 … … 199 199 //****************************************************************************** 200 200 //****************************************************************************** 201 LONG OSLibWinQuerySysValue( HWND hwndDeskTop,LONG iSysValue)202 { 203 return WinQuerySysValue( hwndDeskTop,iSysValue);201 LONG OSLibWinQuerySysValue(LONG iSysValue) 202 { 203 return WinQuerySysValue(HWND_DESKTOP,iSysValue); 204 204 } 205 205 //****************************************************************************** … … 217 217 //****************************************************************************** 218 218 //****************************************************************************** 219 BOOL OSLibWinQueryPointerPos( HWND hwndDeskTop,PPOINT pptlPoint)220 { 221 return WinQueryPointerPos( hwndDeskTop,(PPOINTL)pptlPoint);219 BOOL OSLibWinQueryPointerPos(PPOINT pptlPoint) 220 { 221 return WinQueryPointerPos(HWND_DESKTOP,(PPOINTL)pptlPoint); 222 222 } 223 223 //******************************************************************************
Note:
See TracChangeset
for help on using the changeset viewer.