Ignore:
Timestamp:
Dec 24, 1999, 7:42:46 PM (26 years ago)
Author:
sandervl
Message:

Message handling rewrite

File:
1 edited

Legend:

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

    r2084 r2200  
    1 /* $Id: win32dlg.cpp,v 1.37 1999-12-16 00:11:46 sandervl Exp $ */
     1/* $Id: win32dlg.cpp,v 1.38 1999-12-24 18:39:11 sandervl Exp $ */
    22/*
    33 * Win32 Dialog Code for OS/2
     
    293293        while (TRUE)
    294294        {
    295           if (!OSLibWinPeekMsg(&msg,0,0,0,MSG_NOREMOVE))
     295          if (!OSLibWinPeekMsg(&msg,0,0,0,PM_NOREMOVE))
    296296          {
    297297                if(!(getStyle() & DS_NOIDLEMSG))
     
    299299                OSLibWinGetMsg(&msg,0,0,0);
    300300          }
    301           else  OSLibWinPeekMsg(&msg,0,0,0,MSG_REMOVE);
     301          else  OSLibWinPeekMsg(&msg,0,0,0,PM_REMOVE);
    302302
    303303          if(msg.message == WM_QUIT)
     
    319319//                                       MSG_REMOVE, !(getStyle() & DS_NOIDLEMSG), NULL ))
    320320//            if(OSLibWinPeekMsg(&msg, topOwner->getOS2FrameWindowHandle(), 0, 0, MSG_REMOVE))
    321             if(OSLibWinPeekMsg(&msg, 0, 0, 0, MSG_REMOVE))
     321            if(OSLibWinPeekMsg(&msg, 0, 0, 0, PM_REMOVE))
    322322            {
    323323                if(msg.message == WM_QUIT) {
Note: See TracChangeset for help on using the changeset viewer.