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

Implemented WaitForInputIdle

File:
1 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
Note: See TracChangeset for help on using the changeset viewer.