Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
9916931d
Commit
9916931d
authored
Jun 25, 2011
by
Louis Lenders
Committed by
Alexandre Julliard
Jul 01, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
httpapi: Add stub for HttpCreateHttpHandle.
parent
76546888
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
21 additions
and
1 deletion
+21
-1
httpapi.spec
dlls/httpapi/httpapi.spec
+1
-1
httpapi_main.c
dlls/httpapi/httpapi_main.c
+19
-0
http.h
include/http.h
+1
-0
No files found.
dlls/httpapi/httpapi.spec
View file @
9916931d
...
...
@@ -5,7 +5,7 @@
@ stub HttpCreateAppPool
@ stub HttpCreateConfigGroup
@ stub HttpCreateFilter
@ st
ub HttpCreateHttpHandle
@ st
dcall HttpCreateHttpHandle(ptr long)
@ stub HttpDeleteConfigGroup
@ stdcall HttpDeleteServiceConfiguration(ptr long ptr long ptr)
@ stub HttpFilterAccept
...
...
dlls/httpapi/httpapi_main.c
View file @
9916931d
...
...
@@ -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
;
}
include/http.h
View file @
9916931d
...
...
@@ -53,6 +53,7 @@ typedef enum _HTTP_SERVICE_CONFIG_ID
ULONG
WINAPI
HttpInitialize
(
HTTPAPI_VERSION
,
ULONG
,
PVOID
);
ULONG
WINAPI
HttpTerminate
(
ULONG
,
PVOID
);
ULONG
WINAPI
HttpCreateHttpHandle
(
PHANDLE
,
ULONG
);
ULONG
WINAPI
HttpDeleteServiceConfiguration
(
HANDLE
,
HTTP_SERVICE_CONFIG_ID
,
PVOID
,
ULONG
,
LPOVERLAPPED
);
ULONG
WINAPI
HttpQueryServiceConfiguration
(
HANDLE
,
HTTP_SERVICE_CONFIG_ID
,
PVOID
,
ULONG
,
PVOID
,
ULONG
,
PULONG
,
LPOVERLAPPED
);
ULONG
WINAPI
HttpSetServiceConfiguration
(
HANDLE
,
HTTP_SERVICE_CONFIG_ID
,
PVOID
,
ULONG
,
LPOVERLAPPED
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment