Ignore:
Timestamp:
Sep 5, 1999, 5:53:10 PM (26 years ago)
Author:
sandervl
Message:

More dialog update

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/user32/new/oslibmsg.cpp

    r740 r835  
    1 /* $Id: oslibmsg.cpp,v 1.3 1999-08-29 20:05:07 sandervl Exp $ */
     1/* $Id: oslibmsg.cpp,v 1.4 1999-09-05 15:53:08 sandervl Exp $ */
    22/*
    33 * Window message translation functions for OS/2
     
    7575//******************************************************************************
    7676//******************************************************************************
    77 BOOL OSLibWinGetMsg(LPMSG pMsg, HWND hwnd, UINT uMsgFilterMin, UINT uMsgFilterMax, BOOL isUnicode)
     77BOOL OSLibWinGetMsg(LPMSG pMsg, HWND hwnd, UINT uMsgFilterMin, UINT uMsgFilterMax,
     78                    BOOL isUnicode)
    7879{
    7980 BOOL rc;
     
    8586//******************************************************************************
    8687//******************************************************************************
     88BOOL  OSLibWinPeekMsg(LPMSG pMsg, HWND hwnd, UINT uMsgFilterMin, UINT uMsgFilterMax,
     89                      BOOL fRemove, BOOL isUnicode)
     90{
     91 BOOL rc;
     92
     93  rc = WinPeekMsg(GetThreadHAB(), MsgThreadPtr, hwnd, TranslateWinMsg(uMsgFilterMin),
     94                  TranslateWinMsg(uMsgFilterMax), (fRemove == MSG_REMOVE) ? PM_REMOVE : PM_NOREMOVE);
     95  OS2ToWinMsgTranslate(MsgThreadPtr, pMsg, isUnicode);
     96  return rc;
     97}
     98//******************************************************************************
     99//******************************************************************************
Note: See TracChangeset for help on using the changeset viewer.