Commit 59397fab authored by Zac Brown's avatar Zac Brown Committed by Alexandre Julliard

winhttp: Add stub implementation for WinHttpTimeToSystemTime.

parent 5706b845
...@@ -270,3 +270,14 @@ BOOL WINAPI WinHttpTimeFromSystemTime (CONST SYSTEMTIME* pst, LPWSTR pwszTime) ...@@ -270,3 +270,14 @@ BOOL WINAPI WinHttpTimeFromSystemTime (CONST SYSTEMTIME* pst, LPWSTR pwszTime)
SetLastError(ERROR_NOT_SUPPORTED); SetLastError(ERROR_NOT_SUPPORTED);
return FALSE; return FALSE;
} }
/***********************************************************************
* WinHttpTimeToSystemTime (winhttp.@)
*/
BOOL WINAPI WinHttpTimeToSystemTime (LPCWSTR pwszTime, SYSTEMTIME* pst)
{
FIXME("(%s, %p): stub\n", debugstr_w(pwszTime), pst);
SetLastError(ERROR_NOT_SUPPORTED);
return FALSE;
}
...@@ -27,5 +27,5 @@ ...@@ -27,5 +27,5 @@
@ stub WinHttpSetStatusCallback @ stub WinHttpSetStatusCallback
@ stub WinHttpSetTimeouts @ stub WinHttpSetTimeouts
@ stdcall WinHttpTimeFromSystemTime(ptr ptr) @ stdcall WinHttpTimeFromSystemTime(ptr ptr)
@ stub WinHttpTimeToSystemTime @ stdcall WinHttpTimeToSystemTime(wstr ptr)
@ stdcall WinHttpWriteData(ptr ptr long ptr) @ stdcall WinHttpWriteData(ptr ptr long ptr)
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