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
ae1e79d4
Commit
ae1e79d4
authored
Jul 02, 2008
by
Zac Brown
Committed by
Alexandre Julliard
Jul 04, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winhttp: Add stub implementation for WinHttpOpenRequest and fix function declaration.
parent
ca627f5b
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
2 deletions
+16
-2
main.c
dlls/winhttp/main.c
+14
-0
winhttp.spec
dlls/winhttp/winhttp.spec
+1
-1
winhttp.h
include/winhttp.h
+1
-1
No files found.
dlls/winhttp/main.c
View file @
ae1e79d4
...
...
@@ -153,3 +153,17 @@ HINTERNET WINAPI WinHttpConnect (HINTERNET hSession, LPCWSTR pwszServerName,
SetLastError
(
ERROR_NOT_SUPPORTED
);
return
NULL
;
}
/***********************************************************************
* WinHttpOpenRequest (winhttp.@)
*/
HINTERNET
WINAPI
WinHttpOpenRequest
(
HINTERNET
hConnect
,
LPCWSTR
pwszVerb
,
LPCWSTR
pwszObjectName
,
LPCWSTR
pwszVersion
,
LPCWSTR
pwszReferrer
,
LPCWSTR
*
ppwszAcceptTypes
,
DWORD
dwFlags
)
{
FIXME
(
"(%s, %s, %s, %s, 0x%x): stub
\n
"
,
debugstr_w
(
pwszVerb
),
debugstr_w
(
pwszObjectName
),
debugstr_w
(
pwszVersion
),
debugstr_w
(
pwszReferrer
),
dwFlags
);
SetLastError
(
ERROR_NOT_SUPPORTED
);
return
NULL
;
}
dlls/winhttp/winhttp.spec
View file @
ae1e79d4
...
...
@@ -13,7 +13,7 @@
@ stdcall WinHttpGetIEProxyConfigForCurrentUser(ptr)
@ stub WinHttpGetProxyForUrl
@ stdcall WinHttpOpen(wstr long wstr wstr long)
@ st
ub WinHttpOpenRequest
@ st
dcall WinHttpOpenRequest(ptr wstr wstr wstr wstr ptr long)
@ stub WinHttpQueryAuthSchemes
@ stub WinHttpQueryDataAvailable
@ stub WinHttpQueryHeaders
...
...
include/winhttp.h
View file @
ae1e79d4
...
...
@@ -253,7 +253,7 @@ BOOL WINAPI WinHttpGetDefaultProxyConfiguration(WINHTTP_PROXY_INFO*);
BOOL
WINAPI
WinHttpGetIEProxyConfigForCurrentUser
(
WINHTTP_CURRENT_USER_IE_PROXY_CONFIG
*
config
);
BOOL
WINAPI
WinHttpGetProxyForUrl
(
HINTERNET
,
LPCWSTR
,
WINHTTP_AUTOPROXY_OPTIONS
*
,
WINHTTP_PROXY_INFO
*
);
HINTERNET
WINAPI
WinHttpOpen
(
LPCWSTR
,
DWORD
,
LPCWSTR
,
LPCWSTR
,
DWORD
);
HINTERNET
WINAPI
WinHttpOpenRequest
(
HINTERNET
,
LPCWSTR
,
LPCWSTR
,
LPCWSTR
,
LPCWSTR
,
LPCWSTR
,
DWORD
);
HINTERNET
WINAPI
WinHttpOpenRequest
(
HINTERNET
,
LPCWSTR
,
LPCWSTR
,
LPCWSTR
,
LPCWSTR
,
LPCWSTR
*
,
DWORD
);
BOOL
WINAPI
WinHttpQueryAuthParams
(
HINTERNET
,
DWORD
,
LPVOID
*
);
BOOL
WINAPI
WinHttpQueryAuthSchemes
(
HINTERNET
,
LPDWORD
,
LPDWORD
,
LPDWORD
);
BOOL
WINAPI
WinHttpQueryDataAvailable
(
HINTERNET
,
LPDWORD
);
...
...
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