Ignore:
Timestamp:
Mar 27, 2000, 5:09:22 PM (25 years ago)
Author:
cbratschi
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/user32/oslibwin.cpp

    r3144 r3250  
    1 /* $Id: oslibwin.cpp,v 1.71 2000-03-17 17:12:08 cbratschi Exp $ */
     1/* $Id: oslibwin.cpp,v 1.72 2000-03-27 15:06:29 cbratschi Exp $ */
    22/*
    33 * Window API wrappers for OS/2
     
    199199//******************************************************************************
    200200//******************************************************************************
    201 LONG OSLibWinQuerySysValue(HWND hwndDeskTop,LONG iSysValue)
    202 {
    203   return WinQuerySysValue(hwndDeskTop,iSysValue);
     201LONG OSLibWinQuerySysValue(LONG iSysValue)
     202{
     203  return WinQuerySysValue(HWND_DESKTOP,iSysValue);
    204204}
    205205//******************************************************************************
     
    217217//******************************************************************************
    218218//******************************************************************************
    219 BOOL OSLibWinQueryPointerPos(HWND hwndDeskTop,PPOINT pptlPoint)
    220 {
    221   return WinQueryPointerPos(hwndDeskTop,(PPOINTL)pptlPoint);
     219BOOL OSLibWinQueryPointerPos(PPOINT pptlPoint)
     220{
     221  return WinQueryPointerPos(HWND_DESKTOP,(PPOINTL)pptlPoint);
    222222}
    223223//******************************************************************************
Note: See TracChangeset for help on using the changeset viewer.