Searched defs:WaitRc (Results 1 - 2 of 2) sorted by relevance

/vbox/src/VBox/Additions/WINNT/Installer/Loader/
H A DVBoxWindowsAdditions.cpp91 DWORD WaitRc = WaitForSingleObjectEx(hProcess, INFINITE, TRUE); local
92 while ( WaitRc == WAIT_IO_COMPLETION
93 || WaitRc == WAIT_TIMEOUT)
94 WaitRc = WaitForSingleObjectEx(hProcess, INFINITE, TRUE);
95 if (WaitRc == WAIT_OBJECT_0)
108 fwprintf(stderr, L"ERROR: WaitForSingleObjectEx failed: %u (%u)\n", WaitRc, GetLastError());
/vbox/src/VBox/Runtime/r3/win/
H A Dprocess-win.cpp1348 DWORD WaitRc = WaitForSingleObjectEx(hProcess, Millies, TRUE); local
1349 while (WaitRc == WAIT_IO_COMPLETION)
1350 WaitRc = WaitForSingleObjectEx(hProcess, Millies, TRUE);
1351 switch (WaitRc)
1396 AssertMsgFailed(("WaitRc=%RU32\n", WaitRc));

Completed in 46 milliseconds