Changeset 1067 for trunk/src/user32/oslibmsg.cpp
- Timestamp:
- Sep 27, 1999, 12:24:51 AM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/oslibmsg.cpp
r1066 r1067 1 /* $Id: oslibmsg.cpp,v 1. 2 1999-09-26 16:09:04 dengertExp $ */1 /* $Id: oslibmsg.cpp,v 1.3 1999-09-26 22:24:28 sandervl Exp $ */ 2 2 /* 3 3 * Window message translation functions for OS/2 … … 23 23 #include "oslibutil.h" 24 24 #include "timer.h" 25 #include <thread.h> 26 #include <wprocess.h> 25 27 26 28 QMSG *MsgThreadPtr = 0; … … 54 56 //****************************************************************************** 55 57 //TODO!!! 58 //Signal that the incoming messages in pmwindow need to be translated 59 //(i.e. PM WM_CHAR when translated generates WM_CHAR messages, otherwise 60 // WM_KEYUP/DOWN (etc)) 56 61 //****************************************************************************** 57 62 ULONG TranslateWinMsg(ULONG msg) 58 63 { 64 THDB *thdb; 65 66 thdb = GetThreadTHDB(); 67 if(thdb) { 68 thdb->fMsgTranslated = TRUE; 69 } 70 59 71 return 0; 60 72 }
Note:
See TracChangeset
for help on using the changeset viewer.