- Timestamp:
- Feb 9, 2000, 2:42:38 PM (26 years ago)
- 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 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 -
trunk/src/user32/win32wbase.cpp
r2680 r2697 1 /* $Id: win32wbase.cpp,v 1.1 59 2000-02-08 10:30:03sandervl Exp $ */1 /* $Id: win32wbase.cpp,v 1.160 2000-02-09 13:42:38 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Window Base Class for OS/2 … … 1730 1730 } 1731 1731 //otherwise use WinSendMsg to send it to the right process/thread 1732 dprintf(("SendMessages (inter-process) %x %x %x %x", getWindowHandle(), Msg, wParam, lParam)); 1732 1733 return OSLibSendMessage(getOS2WindowHandle(), Msg, wParam, lParam, FALSE); 1733 1734 }
Note:
See TracChangeset
for help on using the changeset viewer.