Changeset 1971 for trunk/src/user32/windowmsg.cpp
- Timestamp:
- Dec 5, 1999, 1:31:50 AM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/windowmsg.cpp
r1855 r1971 1 /* $Id: windowmsg.cpp,v 1. 7 1999-11-27 00:10:22sandervl Exp $ */1 /* $Id: windowmsg.cpp,v 1.8 1999-12-05 00:31:50 sandervl Exp $ */ 2 2 /* 3 3 * Win32 window message APIs for OS/2 … … 11 11 * TODO: GetQueueStatus: QS_HOTKEY (oslibmsg.cpp) & low word bits 12 12 * TODO: MsgWaitForMultipleObjects: timeout isn't handled correctly (can return too late) 13 * TODO: GetMessageExtraInfo 13 14 * 14 15 * Project Odin Software License can be found in LICENSE.TXT … … 95 96 } 96 97 //****************************************************************************** 97 //****************************************************************************** 98 LONG WIN32API GetMessageExtraInfo(void) 99 { 100 dprintf(("USER32: GetMessageExtraInfo\n")); 101 return O32_GetMessageExtraInfo(); 98 //TODO: 99 //****************************************************************************** 100 LONG WIN32API GetMessageExtraInfo() 101 { 102 dprintf(("USER32: GetMessageExtraInfo NOT SUPPORTED")); 103 return 0; 102 104 } 103 105 //****************************************************************************** … … 105 107 DWORD WIN32API GetMessagePos(void) 106 108 { 107 dprintf(("USER32: GetMessagePos\n"));108 return O 32_GetMessagePos();109 dprintf(("USER32: GetMessagePos")); 110 return OSLibWinGetMessagePos(); 109 111 } 110 112 //****************************************************************************** … … 112 114 LONG WIN32API GetMessageTime(void) 113 115 { 114 dprintf(("USER32: GetMessageTime\n"));115 return O 32_GetMessageTime();116 dprintf(("USER32: GetMessageTime")); 117 return OSLibWinGetMessageTime(); 116 118 } 117 119 //****************************************************************************** … … 210 212 BOOL WIN32API InSendMessage(void) 211 213 { 212 #ifdef DEBUG 213 WriteLog("USER32: InSendMessage\n"); 214 #endif 215 return O32_InSendMessage(); 216 } 217 //****************************************************************************** 218 //****************************************************************************** 219 //****************************************************************************** 220 BOOL WIN32API ReplyMessage( LRESULT arg1) 221 { 222 #ifdef DEBUG 223 WriteLog("USER32: ReplyMessage\n"); 224 #endif 225 return O32_ReplyMessage(arg1); 214 dprintf(("USER32: InSendMessage")); 215 return OSLibWinInSendMessage(); 216 } 217 //****************************************************************************** 218 //****************************************************************************** 219 //****************************************************************************** 220 BOOL WIN32API ReplyMessage(LRESULT result) 221 { 222 dprintf(("USER32: ReplyMessage %x", result)); 223 return OSLibWinReplyMessage(result); 226 224 } 227 225 //******************************************************************************
Note:
See TracChangeset
for help on using the changeset viewer.