mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 04:53:31 +08:00
[HTTPAPI] Sync with Wine Staging 2.9. CORE-13362
ef975ef httpapi: Add stub for HttpCreateServerSession. svn path=/trunk/; revision=74800
This commit is contained in:
parent
f239be2af0
commit
6e19246ef7
@ -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
|
||||
|
@ -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;
|
||||
}
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user