Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
1ff2bdbd
Commit
1ff2bdbd
authored
Jan 14, 2008
by
Rob Shearman
Committed by
Alexandre Julliard
Jan 14, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winhttp: Add a stub for WinHttpOpen.
parent
221a8048
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
1 deletion
+16
-1
main.c
dlls/winhttp/main.c
+15
-0
winhttp.spec
dlls/winhttp/winhttp.spec
+1
-1
No files found.
dlls/winhttp/main.c
View file @
1ff2bdbd
...
...
@@ -114,3 +114,18 @@ BOOL WINAPI WinHttpGetIEProxyConfigForCurrentUser(WINHTTP_CURRENT_USER_IE_PROXY_
SetLastError
(
ERROR_SUCCESS
);
return
TRUE
;
}
/***********************************************************************
* WinHttpOpen (winhttp.@)
*/
HINTERNET
WINAPI
WinHttpOpen
(
LPCWSTR
pwszUserAgent
,
DWORD
dwAccessType
,
LPCWSTR
pwszProxyName
,
LPCWSTR
pwszProxyByPass
,
DWORD
dwFlags
)
{
FIXME
(
"(%s, %d, %s, %s, 0x%x): stub
\n
"
,
debugstr_w
(
pwszUserAgent
),
dwAccessType
,
debugstr_w
(
pwszProxyName
),
debugstr_w
(
pwszProxyByPass
),
dwFlags
);
SetLastError
(
ERROR_NOT_SUPPORTED
);
return
NULL
;
}
dlls/winhttp/winhttp.spec
View file @
1ff2bdbd
...
...
@@ -12,7 +12,7 @@
@ stub WinHttpGetDefaultProxyConfiguration
@ stdcall WinHttpGetIEProxyConfigForCurrentUser(ptr)
@ stub WinHttpGetProxyForUrl
@ st
ub WinHttpOpen
@ st
dcall WinHttpOpen(wstr long wstr wstr long)
@ stub WinHttpOpenRequest
@ stub WinHttpQueryAuthSchemes
@ stub WinHttpQueryDataAvailable
...
...
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