Ignore:
Timestamp:
Dec 12, 2001, 5:40:45 PM (24 years ago)
Author:
sandervl
Message:

SendInput fix + handle Alt-F4 in default window handler

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/user32/windowmsg.cpp

    r6848 r7620  
    1 /* $Id: windowmsg.cpp,v 1.30 2001-09-27 10:42:59 phaller Exp $ */
     1/* $Id: windowmsg.cpp,v 1.31 2001-12-12 16:40:44 sandervl Exp $ */
    22/*
    33 * Win32 window message APIs for OS/2
     
    143143LONG WIN32API GetMessageExtraInfo()
    144144{
    145     dprintf(("USER32: GetMessageExtraInfo"));
     145    dprintf(("USER32: GetMessageExtraInfo %x", GetThreadMessageExtraInfo()));
    146146    return GetThreadMessageExtraInfo();
     147}
     148//******************************************************************************
     149//******************************************************************************
     150LPARAM WIN32API SetMessageExtraInfo(LPARAM lParam)
     151{
     152  dprintf(("USER32: SetMessageExtraInfo %x", lParam));
     153  return SetThreadMessageExtraInfo(lParam);
    147154}
    148155//******************************************************************************
     
    350357  dprintf(("USER32:  SendNotifyMessageW, not completely implemented\n"));
    351358  return(SendMessageA(hwnd, Msg, wParam, lParam));
    352 }
    353 //******************************************************************************
    354 //******************************************************************************
    355 LPARAM WIN32API SetMessageExtraInfo(LPARAM lParam)
    356 {
    357   dprintf(("USER32:  SetMessageExtraInfo\n"));
    358   return SetThreadMessageExtraInfo(lParam);
    359359}
    360360/*****************************************************************************
Note: See TracChangeset for help on using the changeset viewer.