Changeset 4949 for trunk/src/kernel32/HandleManager.cpp
- Timestamp:
- Jan 14, 2001, 6:59:05 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/HandleManager.cpp
r4946 r4949 1 /* $Id: HandleManager.cpp,v 1.5 7 2001-01-14 17:16:54sandervl Exp $ */1 /* $Id: HandleManager.cpp,v 1.58 2001-01-14 17:59:05 sandervl Exp $ */ 2 2 3 3 /* … … 1884 1884 1885 1885 while(TRUE) { 1886 dwResult = (O32_MsgWaitForMultipleObjects(1, &hObject, FALSE,1887 INFINITE, QS_ALLINPUT));1886 dwResult = O32_MsgWaitForMultipleObjects(1, &hObject, FALSE, 1887 INFINITE, QS_ALLINPUT); 1888 1888 if(dwResult == WAIT_OBJECT_0 + 1) { 1889 1889 MSG msg ; … … 1906 1906 FreeLibrary(hUser32); 1907 1907 return dwResult; 1908 }1909 else {1910 1908 #else 1911 1909 // maybe handles from CreateProcess() ... 1912 1910 dwResult = O32_WaitForSingleObject(hObject, dwTimeout); 1911 return (dwResult); 1913 1912 #endif 1914 return (dwResult);1915 1913 } 1916 1914
Note:
See TracChangeset
for help on using the changeset viewer.