Commit 7a2357a4 authored by Robert Shearman's avatar Robert Shearman Committed by Alexandre Julliard

wininet: Documentation fixes.

parent d16c0dc6
......@@ -66,7 +66,7 @@ BOOL WINAPI GopherCreateLocatorA(
/***********************************************************************
* GopherCreateLocatorW (WININET.@)
*
* Unicode version of GopherCreateLocatorA
* See GopherCreateLocatorA.
*/
BOOL WINAPI GopherCreateLocatorW(
LPCWSTR lpszHost,
......@@ -118,7 +118,7 @@ HINTERNET WINAPI GopherFindFirstFileA(
/***********************************************************************
* GopherFindFirstFileW (WININET.@)
*
* Unicode version of GopherFindFirstFileA
* See GopherFindFirstFileA.
*/
HINTERNET WINAPI GopherFindFirstFileW(
HINTERNET hConnect,
......@@ -162,7 +162,7 @@ BOOL WINAPI GopherGetAttributeA(
/***********************************************************************
* GopherGetAttributeW (WININET.@)
*
* Unicode version of GopherGetAttributeA
* See GopherGetAttributeA.
*/
BOOL WINAPI GopherGetAttributeW(
HINTERNET hConnect,
......@@ -202,7 +202,7 @@ BOOL WINAPI GopherGetLocatorTypeA(LPCSTR lpszLocator, LPDWORD lpdwGopherType)
/***********************************************************************
* GopherGetLocatorTypeW (WININET.@)
*
* Unicode version of GopherGetLocatorTypeA
* See GopherGetLocatorTypeA.
*/
BOOL WINAPI GopherGetLocatorTypeW(LPCWSTR lpszLocator, LPDWORD lpdwGopherType)
{
......@@ -241,7 +241,7 @@ HINTERNET WINAPI GopherOpenFileA(
/***********************************************************************
* GopherOpenFileW (WININET.@)
*
* Unicode version of GopherOpenFileA
* See GopherOpenFileA.
*/
HINTERNET WINAPI GopherOpenFileW(
HINTERNET hConnect,
......
......@@ -1699,7 +1699,11 @@ BOOL WINAPI HttpQueryInfoA(HINTERNET hHttpRequest, DWORD dwInfoLevel,
* HttpSendRequestExA (WININET.@)
*
* Sends the specified request to the HTTP server and allows chunked
* transfers
* transfers.
*
* RETURNS
* Success: TRUE
* Failure: FALSE, call GetLastError() for more information.
*/
BOOL WINAPI HttpSendRequestExA(HINTERNET hRequest,
LPINTERNET_BUFFERSA lpBuffersIn,
......@@ -1753,6 +1757,10 @@ BOOL WINAPI HttpSendRequestExA(HINTERNET hRequest,
*
* Sends the specified request to the HTTP server and allows chunked
* transfers
*
* RETURNS
* Success: TRUE
* Failure: FALSE, call GetLastError() for more information.
*/
BOOL WINAPI HttpSendRequestExW(HINTERNET hRequest,
LPINTERNET_BUFFERSW lpBuffersIn,
......
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