Changeset 2200 for trunk/src/user32/oslibmsg.h
- Timestamp:
- Dec 24, 1999, 7:42:46 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/oslibmsg.h
r1971 r2200 1 /* $Id: oslibmsg.h,v 1. 6 1999-12-05 00:31:47sandervl Exp $ */1 /* $Id: oslibmsg.h,v 1.7 1999-12-24 18:39:10 sandervl Exp $ */ 2 2 /* 3 3 * Window message translation functions for OS/2 … … 18 18 ULONG TranslateWinMsg(ULONG msg); 19 19 20 #define ODINMSG_NOEXTRAMSGS 0 21 #define ODINMSG_EXTRAMSGS 1 22 20 23 #ifdef OS2DEF_INCLUDED 21 void OS2ToWinMsgTranslate(QMSG *os2Msg, MSG *winMsg, BOOL isUnicode);24 BOOL OS2ToWinMsgTranslate(void *pThdb, QMSG *os2Msg, MSG *winMsg, BOOL isUnicode, BOOL fTranslateExtraMsgs = ODINMSG_EXTRAMSGS); 22 25 void WinToOS2MsgTranslate(MSG *winMsg, QMSG *os2Msg, BOOL isUnicode); 26 27 extern QMSG *MsgThreadPtr; 28 23 29 #endif 24 30 … … 26 32 UINT uMsgFilterMax, BOOL isUnicode = FALSE); 27 33 BOOL OSLibWinPeekMsg(LPMSG pMsg, HWND hwnd, UINT uMsgFilterMin, 28 UINT uMsgFilterMax, BOOLfRemove, BOOL isUnicode = FALSE);34 UINT uMsgFilterMax, DWORD fRemove, BOOL isUnicode = FALSE); 29 35 void OSLibWinPostQuitMessage(ULONG nExitCode); 30 36 LONG OSLibWinDispatchMsg(MSG *msg, BOOL isUnicode = FALSE); 37 BOOL OSLibWinTranslateMessage(MSG *msg); 31 38 32 39 ULONG OSLibWinQueryMsgTime(); … … 37 44 LONG OSLibWinGetMessageTime(); 38 45 BOOL OSLibWinReplyMessage(ULONG result); 39 40 46 ULONG OSLibWinQueryQueueStatus(); 41 47 … … 94 100 #define WINWM_COPYDATA 0x004A 95 101 #define WINWM_CANCELJOURNAL 0x004B 102 #define WINWM_CONTEXTMENU 0x007b 103 #define WINWM_STYLECHANGING 0x007c 104 #define WINWM_STYLECHANGED 0x007d 105 #define WINWM_DISPLAYCHANGE 0x007e 106 #define WINWM_GETICON 0x007f 107 #define WINWM_SETICON 0x0080 96 108 #define WINWM_NCCREATE 0x0081 97 109 #define WINWM_NCDESTROY 0x0082 … … 129 141 #define WINWM_INITMENU 0x0116 130 142 #define WINWM_INITMENUPOPUP 0x0117 143 #define WINWM_SYSTIMER 0x0118 131 144 #define WINWM_MENUSELECT 0x011F 132 145 #define WINWM_MENUCHAR 0x0120 … … 187 200 #define WINWM_HOTKEY 0x0312 188 201 #define WINWM_DDE_FIRST 0x03E0 189 #define WINWM_DDE_INITIATE (W M_DDE_FIRST)190 #define WINWM_DDE_TERMINATE (W M_DDE_FIRST + 1)191 #define WINWM_DDE_ADVISE (W M_DDE_FIRST + 2)192 #define WINWM_DDE_UNADVISE (W M_DDE_FIRST + 3)193 #define WINWM_DDE_ACK (W M_DDE_FIRST + 4)194 #define WINWM_DDE_DATA (W M_DDE_FIRST + 5)195 #define WINWM_DDE_REQUEST (W M_DDE_FIRST + 6)196 #define WINWM_DDE_POKE (W M_DDE_FIRST + 7)197 #define WINWM_DDE_EXECUTE (W M_DDE_FIRST + 8)198 #define WINWM_DDE_LAST (W M_DDE_FIRST + 8)202 #define WINWM_DDE_INITIATE (WINWM_DDE_FIRST) 203 #define WINWM_DDE_TERMINATE (WINWM_DDE_FIRST + 1) 204 #define WINWM_DDE_ADVISE (WINWM_DDE_FIRST + 2) 205 #define WINWM_DDE_UNADVISE (WINWM_DDE_FIRST + 3) 206 #define WINWM_DDE_ACK (WINWM_DDE_FIRST + 4) 207 #define WINWM_DDE_DATA (WINWM_DDE_FIRST + 5) 208 #define WINWM_DDE_REQUEST (WINWM_DDE_FIRST + 6) 209 #define WINWM_DDE_POKE (WINWM_DDE_FIRST + 7) 210 #define WINWM_DDE_EXECUTE (WINWM_DDE_FIRST + 8) 211 #define WINWM_DDE_LAST (WINWM_DDE_FIRST + 8) 199 212 #define WINWM_USER 0x0400 200 213
Note:
See TracChangeset
for help on using the changeset viewer.