From 7a2357a480dc1395e60a0b1a6ff4f168ae588773 Mon Sep 17 00:00:00 2001 From: Robert Shearman Date: Tue, 14 Feb 2006 11:34:14 +0100 Subject: [PATCH] wininet: Documentation fixes. --- dlls/wininet/gopher.c | 10 +++++----- dlls/wininet/http.c | 10 +++++++++- 2 files changed, 14 insertions(+), 6 deletions(-) diff --git a/dlls/wininet/gopher.c b/dlls/wininet/gopher.c index 4c495279f9..a599ad8c3f 100644 --- a/dlls/wininet/gopher.c +++ b/dlls/wininet/gopher.c @@ -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, diff --git a/dlls/wininet/http.c b/dlls/wininet/http.c index 1312380f62..9e74001f20 100644 --- a/dlls/wininet/http.c +++ b/dlls/wininet/http.c @@ -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, -- 2.32.0.93.g670b81a890