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
877d6c95
Commit
877d6c95
authored
Aug 15, 2008
by
Hans Leidekker
Committed by
Alexandre Julliard
Aug 19, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winhttp: Forward WinHttpCrackUrl and WinHttpCreateUrl to wininet for the time being.
parent
587162c3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
24 additions
and
3 deletions
+24
-3
Makefile.in
dlls/winhttp/Makefile.in
+1
-1
main.c
dlls/winhttp/main.c
+21
-0
winhttp.spec
dlls/winhttp/winhttp.spec
+2
-2
No files found.
dlls/winhttp/Makefile.in
View file @
877d6c95
...
...
@@ -4,7 +4,7 @@ SRCDIR = @srcdir@
VPATH
=
@srcdir@
MODULE
=
winhttp.dll
IMPORTLIB
=
winhttp
IMPORTS
=
kernel32
IMPORTS
=
wininet
kernel32
C_SRCS
=
\
handle.c
\
...
...
dlls/winhttp/main.c
View file @
877d6c95
...
...
@@ -209,3 +209,24 @@ BOOL WINAPI WinHttpAddRequestHeaders (HINTERNET hRequest, LPCWSTR pwszHeaders,
SetLastError
(
ERROR_NOT_SUPPORTED
);
return
FALSE
;
}
BOOL
WINAPI
InternetCrackUrlW
(
LPCWSTR
,
DWORD
,
DWORD
,
LPURL_COMPONENTSW
);
BOOL
WINAPI
InternetCreateUrlW
(
LPURL_COMPONENTS
,
DWORD
,
LPWSTR
,
LPDWORD
);
/***********************************************************************
* WinHttpCrackUrl (winhttp.@)
*/
BOOL
WINAPI
WinHttpCrackUrl
(
LPCWSTR
url
,
DWORD
len
,
DWORD
flags
,
LPURL_COMPONENTSW
components
)
{
TRACE
(
"%s, %d, %x, %p
\n
"
,
debugstr_w
(
url
),
len
,
flags
,
components
);
return
InternetCrackUrlW
(
url
,
len
,
flags
,
components
);
}
/***********************************************************************
* WinHttpCreateUrl (winhttp.@)
*/
BOOL
WINAPI
WinHttpCreateUrl
(
LPURL_COMPONENTS
comps
,
DWORD
flags
,
LPWSTR
url
,
LPDWORD
len
)
{
TRACE
(
"%p, 0x%08x, %p, %p
\n
"
,
comps
,
flags
,
url
,
len
);
return
InternetCreateUrlW
(
comps
,
flags
,
url
,
len
);
}
dlls/winhttp/winhttp.spec
View file @
877d6c95
...
...
@@ -6,8 +6,8 @@
@ stdcall WinHttpCheckPlatform()
@ stdcall WinHttpCloseHandle(ptr)
@ stdcall WinHttpConnect(ptr wstr long long)
@ st
ub WinHttpCrackUrl
@ st
ub WinHttpCreateUrl
@ st
dcall WinHttpCrackUrl(wstr long long ptr)
@ st
dcall WinHttpCreateUrl(ptr long ptr ptr)
@ stdcall WinHttpDetectAutoProxyConfigUrl(long ptr)
@ stdcall WinHttpGetDefaultProxyConfiguration(ptr)
@ stdcall WinHttpGetIEProxyConfigForCurrentUser(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