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
7e22fc09
Commit
7e22fc09
authored
Sep 26, 2012
by
Hans Leidekker
Committed by
Alexandre Julliard
Sep 26, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
httpapi: Add a stub implementation of HttpAddUrl.
parent
c82e1eaf
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
1 deletion
+11
-1
httpapi.spec
dlls/httpapi/httpapi.spec
+1
-1
httpapi_main.c
dlls/httpapi/httpapi_main.c
+9
-0
http.h
include/http.h
+1
-0
No files found.
dlls/httpapi/httpapi.spec
View file @
7e22fc09
@ stub HttpAddFragmentToCache
@ st
ub HttpAddUrl
@ st
dcall HttpAddUrl(ptr wstr ptr)
@ stub HttpAddUrlToConfigGroup
@ stub HttpCancelHttpRequest
@ stub HttpCreateAppPool
...
...
dlls/httpapi/httpapi_main.c
View file @
7e22fc09
...
...
@@ -176,3 +176,12 @@ ULONG WINAPI HttpCreateHttpHandle( PHANDLE handle, ULONG reserved )
FIXME
(
"(%p, %d): stub!
\n
"
,
handle
,
reserved
);
return
ERROR_CALL_NOT_IMPLEMENTED
;
}
/***********************************************************************
* HttpAddUrl (HTTPAPI.@)
*/
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
;
}
include/http.h
View file @
7e22fc09
...
...
@@ -53,6 +53,7 @@ typedef enum _HTTP_SERVICE_CONFIG_ID
ULONG
WINAPI
HttpInitialize
(
HTTPAPI_VERSION
,
ULONG
,
PVOID
);
ULONG
WINAPI
HttpTerminate
(
ULONG
,
PVOID
);
ULONG
WINAPI
HttpAddUrl
(
HANDLE
,
PCWSTR
,
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
);
...
...
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