From 6e19246ef71dc1afdf5496eae8d67ed7ac09301c Mon Sep 17 00:00:00 2001 From: Amine Khaldi Date: Sat, 3 Jun 2017 19:02:20 +0000 Subject: [PATCH] [HTTPAPI] Sync with Wine Staging 2.9. CORE-13362 ef975ef httpapi: Add stub for HttpCreateServerSession. svn path=/trunk/; revision=74800 --- reactos/dll/win32/httpapi/httpapi.spec | 1 + reactos/dll/win32/httpapi/httpapi_main.c | 9 +++++++++ reactos/media/doc/README.WINE | 2 +- 3 files changed, 11 insertions(+), 1 deletion(-) diff --git a/reactos/dll/win32/httpapi/httpapi.spec b/reactos/dll/win32/httpapi/httpapi.spec index 4d35c843238..cdab28d9f86 100644 --- a/reactos/dll/win32/httpapi/httpapi.spec +++ b/reactos/dll/win32/httpapi/httpapi.spec @@ -6,6 +6,7 @@ @ stub HttpCreateConfigGroup @ stub HttpCreateFilter @ stdcall HttpCreateHttpHandle(ptr long) +@ stdcall HttpCreateServerSession(long 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 f24807f4920..13e4810aca0 100644 --- a/reactos/dll/win32/httpapi/httpapi_main.c +++ b/reactos/dll/win32/httpapi/httpapi_main.c @@ -187,3 +187,12 @@ ULONG WINAPI HttpAddUrl( HANDLE handle, PCWSTR url, PVOID reserved ) FIXME( "(%p, %s, %p): stub!\n", handle, debugstr_w(url), reserved ); return ERROR_CALL_NOT_IMPLEMENTED; } + +/*********************************************************************** + * HttpCreateServerSession (HTTPAPI.@) + */ +ULONG WINAPI HttpCreateServerSession( HTTPAPI_VERSION version, HTTP_SERVER_SESSION_ID *id, ULONG reserved ) +{ + FIXME( "({%d,%d}, %p, %d): stub!\n", version.HttpApiMajorVersion, version.HttpApiMinorVersion, id, reserved ); + return ERROR_ACCESS_DENIED; +} diff --git a/reactos/media/doc/README.WINE b/reactos/media/doc/README.WINE index 6f0835a51fc..4b63fa1fe6d 100644 --- a/reactos/media/doc/README.WINE +++ b/reactos/media/doc/README.WINE @@ -72,7 +72,7 @@ reactos/dll/win32/gdiplus # Synced to WineStaging-2.9 reactos/dll/win32/hhctrl.ocx # Synced to WineStaging-2.9 reactos/dll/win32/hlink # Synced to WineStaging-2.9 reactos/dll/win32/hnetcfg # Synced to WineStaging-1.9.16 -reactos/dll/win32/httpapi # Synced to WineStaging-1.9.11 +reactos/dll/win32/httpapi # Synced to WineStaging-2.9 reactos/dll/win32/iccvid # Synced to WineStaging-2.2 reactos/dll/win32/ieframe # Synced to WineStaging-2.2 reactos/dll/win32/imaadp32.acm # Synced to WineStaging-2.2 -- 2.17.1