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
ca627f5b
Commit
ca627f5b
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 WinHttpConnect.
parent
5db54596
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
1 deletion
+14
-1
main.c
dlls/winhttp/main.c
+13
-0
winhttp.spec
dlls/winhttp/winhttp.spec
+1
-1
No files found.
dlls/winhttp/main.c
View file @
ca627f5b
...
@@ -140,3 +140,16 @@ HINTERNET WINAPI WinHttpOpen(LPCWSTR pwszUserAgent, DWORD dwAccessType,
...
@@ -140,3 +140,16 @@ HINTERNET WINAPI WinHttpOpen(LPCWSTR pwszUserAgent, DWORD dwAccessType,
SetLastError
(
ERROR_NOT_SUPPORTED
);
SetLastError
(
ERROR_NOT_SUPPORTED
);
return
NULL
;
return
NULL
;
}
}
/***********************************************************************
* WinHttpConnect (winhttp.@)
*/
HINTERNET
WINAPI
WinHttpConnect
(
HINTERNET
hSession
,
LPCWSTR
pwszServerName
,
INTERNET_PORT
nServerPort
,
DWORD
dwReserved
)
{
FIXME
(
"(%s, %d, 0x%x): stub
\n
"
,
debugstr_w
(
pwszServerName
),
nServerPort
,
dwReserved
);
SetLastError
(
ERROR_NOT_SUPPORTED
);
return
NULL
;
}
dlls/winhttp/winhttp.spec
View file @
ca627f5b
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
@ stub WinHttpAddRequestHeaders
@ stub WinHttpAddRequestHeaders
@ stdcall WinHttpCheckPlatform()
@ stdcall WinHttpCheckPlatform()
@ stub WinHttpCloseHandle
@ stub WinHttpCloseHandle
@ st
ub WinHttpConnect
@ st
dcall WinHttpConnect(ptr wstr long long)
@ stub WinHttpCrackUrl
@ stub WinHttpCrackUrl
@ stub WinHttpCreateUrl
@ stub WinHttpCreateUrl
@ stdcall WinHttpDetectAutoProxyConfigUrl(long ptr)
@ stdcall WinHttpDetectAutoProxyConfigUrl(long ptr)
...
...
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