From 6528ad11a0ac47217b5b3702ef05c430588f9ecc Mon Sep 17 00:00:00 2001 From: Amine Khaldi Date: Tue, 24 Jan 2012 13:54:58 +0000 Subject: [PATCH] [HTTPAPI] * Sync to Wine 1.3.37. svn path=/trunk/; revision=55142 --- reactos/dll/win32/httpapi/httpapi.spec | 2 +- reactos/dll/win32/httpapi/httpapi_main.c | 19 +++++++++++++++++++ reactos/media/doc/README.WINE | 2 +- 3 files changed, 21 insertions(+), 2 deletions(-) diff --git a/reactos/dll/win32/httpapi/httpapi.spec b/reactos/dll/win32/httpapi/httpapi.spec index a33286af206..7e5eede49a8 100644 --- a/reactos/dll/win32/httpapi/httpapi.spec +++ b/reactos/dll/win32/httpapi/httpapi.spec @@ -5,7 +5,7 @@ @ stub HttpCreateAppPool @ stub HttpCreateConfigGroup @ stub HttpCreateFilter -@ stub HttpCreateHttpHandle +@ stdcall HttpCreateHttpHandle(ptr long) @ stub HttpDeleteConfigGroup @ stdcall HttpDeleteServiceConfiguration(ptr long ptr long ptr) @ stub HttpFilterAccept diff --git a/reactos/dll/win32/httpapi/httpapi_main.c b/reactos/dll/win32/httpapi/httpapi_main.c index 7b29a15016d..3375cb6fdc4 100644 --- a/reactos/dll/win32/httpapi/httpapi_main.c +++ b/reactos/dll/win32/httpapi/httpapi_main.c @@ -157,3 +157,22 @@ ULONG WINAPI HttpSetServiceConfiguration( HANDLE handle, HTTP_SERVICE_CONFIG_ID FIXME( "(%p, %d, %p, %d, %p): stub!\n", handle, type, config, length, overlapped ); return NO_ERROR; } + +/*********************************************************************** + * HttpCreateHttpHandle (HTTPAPI.@) + * + * Creates a handle to the HTTP request queue + * + * PARAMS + * handle [O] handle to request queue + * reserved [I] reserved, must be NULL + * + * RETURNS + * NO_ERROR if function succeeds, or error code if function fails + * + */ +ULONG WINAPI HttpCreateHttpHandle( PHANDLE handle, ULONG reserved ) +{ + FIXME( "(%p, %d): stub!\n", handle, reserved); + return ERROR_CALL_NOT_IMPLEMENTED; +} diff --git a/reactos/media/doc/README.WINE b/reactos/media/doc/README.WINE index f7bff3f2a73..081fefc68dd 100644 --- a/reactos/media/doc/README.WINE +++ b/reactos/media/doc/README.WINE @@ -65,7 +65,7 @@ reactos/dll/win32/gdiplus # Autosync reactos/dll/win32/hhctrl.ocx # Autosync reactos/dll/win32/hlink # Autosync reactos/dll/win32/hnetcfg # Autosync -reactos/dll/win32/httpapi # Autosync +reactos/dll/win32/httpapi # Synced to Wine-1.3.37 reactos/dll/win32/iccvid # Autosync reactos/dll/win32/icmp # Synced to Wine-0_9_10 reactos/dll/win32/imaadp32.acm # Autosync