Commit 817d6625 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

wininet: Added InternetUnlockRequestFile implementation.

parent c1bab59e
......@@ -3964,10 +3964,12 @@ BOOL WINAPI InternetLockRequestFile(HINTERNET hInternet, HANDLE *lphLockReqHandl
return res == ERROR_SUCCESS;
}
BOOL WINAPI InternetUnlockRequestFile( HANDLE hLockHandle)
BOOL WINAPI InternetUnlockRequestFile(HANDLE hLockHandle)
{
FIXME("STUB\n");
return FALSE;
TRACE("(%p)\n", hLockHandle);
req_file_release(hLockHandle);
return TRUE;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment