winpr/wait: add missing parameters
Add the missing parameters introduced with PR #3381
This commit is contained in:
parent
38c88d4319
commit
e54c504eaa
@ -309,7 +309,7 @@ DWORD WaitForSingleObject(HANDLE hHandle, DWORD dwMilliseconds)
|
||||
|
||||
DWORD WaitForSingleObjectEx(HANDLE hHandle, DWORD dwMilliseconds, BOOL bAlertable)
|
||||
{
|
||||
WLog_ERR(TAG, "%s: Not implemented.");
|
||||
WLog_ERR(TAG, "%s: Not implemented.", __FUNCTION__);
|
||||
SetLastError(ERROR_NOT_SUPPORTED);
|
||||
return WAIT_FAILED;
|
||||
}
|
||||
@ -549,7 +549,7 @@ DWORD WaitForMultipleObjectsEx(DWORD nCount, const HANDLE *lpHandles, BOOL bWait
|
||||
|
||||
DWORD SignalObjectAndWait(HANDLE hObjectToSignal, HANDLE hObjectToWaitOn, DWORD dwMilliseconds, BOOL bAlertable)
|
||||
{
|
||||
WLog_ERR(TAG, "%s: Not implemented.");
|
||||
WLog_ERR(TAG, "%s: Not implemented.", __FUNCTION__);
|
||||
SetLastError(ERROR_NOT_SUPPORTED);
|
||||
return WAIT_FAILED;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user