Changeset 8812 for trunk/src


Ignore:
Timestamp:
Jul 1, 2002, 1:33:09 PM (23 years ago)
Author:
sandervl
Message:

Translate & dispatch unprocessed messages in IsDialogMessageA/W (Wine doesn't do this, but experiments in Windows 2000 show different behaviour)

File:
1 edited

Legend:

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

    r8802 r8812  
    1 /* $Id: windlgmsg.cpp,v 1.14 2002-06-28 19:46:28 sandervl Exp $ */
     1/* $Id: windlgmsg.cpp,v 1.15 2002-07-01 11:33:09 sandervl Exp $ */
    22/*
    33 * Win32 dialog message APIs for OS/2
     
    221221        (msg->message != WM_SYSCHAR) &&
    222222        (msg->message != WM_CHAR))
     223    {
     224#ifdef __WIN32OS2__
     225        *translate = *dispatch = TRUE;
     226        return TRUE;
     227#else
    223228        return FALSE;
     229#endif
     230    }
    224231
    225232    if (dlgCode & DLGC_WANTMESSAGE)
Note: See TracChangeset for help on using the changeset viewer.