Ignore:
Timestamp:
Oct 25, 1999, 10:17:41 PM (26 years ago)
Author:
sandervl
Message:

menu changes + misc bugfixes

File:
1 edited

Legend:

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

    r1425 r1446  
    1 /* $Id: oslibwin.cpp,v 1.35 1999-10-23 23:04:35 sandervl Exp $ */
     1/* $Id: oslibwin.cpp,v 1.36 1999-10-25 20:17:19 sandervl Exp $ */
    22/*
    33 * Window API wrappers for OS/2
     
    199199BOOL OSLibWinSetWindowULong(HWND hwnd, ULONG offset, ULONG value)
    200200{
     201  if(offset == OSLIB_QWL_USER)
     202        offset = QWL_USER;
     203
    201204  return WinSetWindowULong(hwnd, offset, value);
    202205}
     
    205208ULONG OSLibWinGetWindowULong(HWND hwnd, ULONG offset)
    206209{
     210  if(offset == OSLIB_QWL_USER)
     211        offset = QWL_USER;
     212
    207213  return WinQueryWindowULong(hwnd, offset);
    208214}
Note: See TracChangeset for help on using the changeset viewer.