winpr/wait: add missing parameters

Add the missing parameters introduced with PR #3381
This commit is contained in:
Bernhard Miklautz 2016-10-06 15:40:11 +02:00
parent 38c88d4319
commit e54c504eaa

View File

@ -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;
}