Changeset 2697 for trunk/src


Ignore:
Timestamp:
Feb 9, 2000, 2:42:38 PM (26 years ago)
Author:
sandervl
Message:

Implemented WaitForInputIdle

Location:
trunk/src/user32
Files:
2 edited

Legend:

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

    r2668 r2697  
    1 /* $Id: user32.cpp,v 1.69 2000-02-06 17:39:33 cbratschi Exp $ */
     1/* $Id: user32.cpp,v 1.70 2000-02-09 13:42:38 sandervl Exp $ */
    22
    33/*
     
    10701070}
    10711071//******************************************************************************
    1072 //TODO:How can we emulate this one in OS/2???
    10731072//******************************************************************************
    10741073DWORD WIN32API WaitForInputIdle(HANDLE hProcess, DWORD dwTimeOut)
    10751074{
    1076 #ifdef DEBUG
    1077   WriteLog("USER32:  WaitForInputIdle (Not Implemented) %d\n", dwTimeOut);
    1078 #endif
    1079 
    1080   if(dwTimeOut == INFINITE) return(0);
    1081 
    1082 //  DosSleep(dwTimeOut/16);
    1083   return(0);
     1075  dprintf(("USER32: WaitForInputIdle %x %d\n", hProcess, dwTimeOut));
     1076
     1077  return O32_WaitForInputIdle(hProcess, dwTimeOut);
    10841078}
    10851079
  • trunk/src/user32/win32wbase.cpp

    r2680 r2697  
    1 /* $Id: win32wbase.cpp,v 1.159 2000-02-08 10:30:03 sandervl Exp $ */
     1/* $Id: win32wbase.cpp,v 1.160 2000-02-09 13:42:38 sandervl Exp $ */
    22/*
    33 * Win32 Window Base Class for OS/2
     
    17301730    }
    17311731    //otherwise use WinSendMsg to send it to the right process/thread
     1732    dprintf(("SendMessages (inter-process) %x %x %x %x", getWindowHandle(), Msg, wParam, lParam));
    17321733    return OSLibSendMessage(getOS2WindowHandle(), Msg, wParam, lParam, FALSE);
    17331734}
Note: See TracChangeset for help on using the changeset viewer.