Ignore:
Timestamp:
Dec 5, 1999, 1:31:50 AM (26 years ago)
Author:
sandervl
Message:

Rewrote some message apis + WM_WINDOWPOSCHANGED fix

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:22 sandervl Exp $ */
     1/* $Id: windowmsg.cpp,v 1.8 1999-12-05 00:31:50 sandervl Exp $ */
    22/*
    33 * Win32 window message APIs for OS/2
     
    1111 * TODO: GetQueueStatus: QS_HOTKEY (oslibmsg.cpp) & low word bits
    1212 * TODO: MsgWaitForMultipleObjects: timeout isn't handled correctly (can return too late)
     13 * TODO: GetMessageExtraInfo
    1314 *
    1415 * Project Odin Software License can be found in LICENSE.TXT
     
    9596}
    9697//******************************************************************************
    97 //******************************************************************************
    98 LONG WIN32API GetMessageExtraInfo(void)
    99 {
    100     dprintf(("USER32:  GetMessageExtraInfo\n"));
    101     return O32_GetMessageExtraInfo();
     98//TODO:
     99//******************************************************************************
     100LONG WIN32API GetMessageExtraInfo()
     101{
     102    dprintf(("USER32: GetMessageExtraInfo NOT SUPPORTED"));
     103    return 0;
    102104}
    103105//******************************************************************************
     
    105107DWORD WIN32API GetMessagePos(void)
    106108{
    107     dprintf(("USER32:  GetMessagePos\n"));
    108     return O32_GetMessagePos();
     109    dprintf(("USER32: GetMessagePos"));
     110    return OSLibWinGetMessagePos();
    109111}
    110112//******************************************************************************
     
    112114LONG WIN32API GetMessageTime(void)
    113115{
    114     dprintf(("USER32:  GetMessageTime\n"));
    115     return O32_GetMessageTime();
     116    dprintf(("USER32: GetMessageTime"));
     117    return OSLibWinGetMessageTime();
    116118}
    117119//******************************************************************************
     
    210212BOOL WIN32API InSendMessage(void)
    211213{
    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//******************************************************************************
     220BOOL WIN32API ReplyMessage(LRESULT result)
     221{
     222    dprintf(("USER32: ReplyMessage %x", result));
     223    return OSLibWinReplyMessage(result);
    226224}
    227225//******************************************************************************
Note: See TracChangeset for help on using the changeset viewer.