Changeset 835 for trunk/src/user32/new/oslibmsg.cpp
- Timestamp:
- Sep 5, 1999, 5:53:10 PM (26 years ago)
- 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:07sandervl Exp $ */1 /* $Id: oslibmsg.cpp,v 1.4 1999-09-05 15:53:08 sandervl Exp $ */ 2 2 /* 3 3 * Window message translation functions for OS/2 … … 75 75 //****************************************************************************** 76 76 //****************************************************************************** 77 BOOL OSLibWinGetMsg(LPMSG pMsg, HWND hwnd, UINT uMsgFilterMin, UINT uMsgFilterMax, BOOL isUnicode) 77 BOOL OSLibWinGetMsg(LPMSG pMsg, HWND hwnd, UINT uMsgFilterMin, UINT uMsgFilterMax, 78 BOOL isUnicode) 78 79 { 79 80 BOOL rc; … … 85 86 //****************************************************************************** 86 87 //****************************************************************************** 88 BOOL 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.