Changeset 2696 for trunk/src/kernel32/wprocess.cpp
- Timestamp:
- Feb 9, 2000, 2:42:13 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/wprocess.cpp
r2345 r2696 1 /* $Id: wprocess.cpp,v 1.6 6 2000-01-06 20:07:10sandervl Exp $ */1 /* $Id: wprocess.cpp,v 1.67 2000-02-09 13:42:13 sandervl Exp $ */ 2 2 3 3 /* … … 851 851 STARTUPINFOA startinfo = {0}; 852 852 PROCESS_INFORMATION procinfo; 853 DWORD rc; 853 854 854 855 dprintf(("KERNEL32: WinExec %s\n", lpCmdLine)); … … 857 858 &startinfo, &procinfo) == FALSE) 858 859 { 859 return 0; 860 return 0; 861 } 862 //block until the launched app waits for input (or a timeout of 15 seconds) 863 //TODO: Shouldn't call Open32, but the api in user32.. 864 rc = O32_WaitForInputIdle(procinfo.hProcess, 15000); 865 if(rc != 0) { 866 dprintf(("WinExec: WaitForInputIdle %x returned %x", procinfo.hProcess, rc)); 860 867 } 861 868 return procinfo.hProcess; //correct?
Note:
See TracChangeset
for help on using the changeset viewer.