Changeset 2697 for trunk/src/user32/user32.cpp
- Timestamp:
- Feb 9, 2000, 2:42:38 PM (26 years ago)
- 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 cbratschiExp $ */1 /* $Id: user32.cpp,v 1.70 2000-02-09 13:42:38 sandervl Exp $ */ 2 2 3 3 /* … … 1070 1070 } 1071 1071 //****************************************************************************** 1072 //TODO:How can we emulate this one in OS/2???1073 1072 //****************************************************************************** 1074 1073 DWORD WIN32API WaitForInputIdle(HANDLE hProcess, DWORD dwTimeOut) 1075 1074 { 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); 1084 1078 } 1085 1079
Note:
See TracChangeset
for help on using the changeset viewer.