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
8143fb59
Commit
8143fb59
authored
Feb 11, 2022
by
Eric Pouech
Committed by
Alexandre Julliard
Feb 11, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
jsproxy: Enable compilation with long types.
Signed-off-by:
Eric Pouech
<
eric.pouech@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
e8e0917a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
5 deletions
+4
-5
Makefile.in
dlls/jsproxy/Makefile.in
+0
-1
main.c
dlls/jsproxy/main.c
+4
-4
No files found.
dlls/jsproxy/Makefile.in
View file @
8143fb59
EXTRADEFS
=
-DWINE_NO_LONG_TYPES
MODULE
=
jsproxy.dll
IMPORTS
=
uuid oleaut32 ole32 ws2_32
IMPORTLIB
=
jsproxy
...
...
dlls/jsproxy/main.c
View file @
8143fb59
...
...
@@ -81,7 +81,7 @@ static struct pac_script *global_script = &pac_script;
*/
BOOL
WINAPI
InternetDeInitializeAutoProxyDll
(
LPSTR
mime
,
DWORD
reserved
)
{
TRACE
(
"%s, %u
\n
"
,
debugstr_a
(
mime
),
reserved
);
TRACE
(
"%s, %
l
u
\n
"
,
debugstr_a
(
mime
),
reserved
);
EnterCriticalSection
(
&
cs_jsproxy
);
...
...
@@ -127,7 +127,7 @@ BOOL WINAPI JSPROXY_InternetInitializeAutoProxyDll( DWORD version, LPSTR tmpfile
{
BOOL
ret
=
FALSE
;
TRACE
(
"%u, %s, %s, %p, %p
\n
"
,
version
,
debugstr_a
(
tmpfile
),
debugstr_a
(
mime
),
callbacks
,
buffer
);
TRACE
(
"%
l
u, %s, %s, %p, %p
\n
"
,
version
,
debugstr_a
(
tmpfile
),
debugstr_a
(
mime
),
callbacks
,
buffer
);
if
(
callbacks
)
FIXME
(
"callbacks not supported
\n
"
);
...
...
@@ -538,7 +538,7 @@ static BOOL run_script( const WCHAR *script, const WCHAR *url, const WCHAR *host
VariantClear
(
&
args
[
1
]
);
if
(
hr
!=
S_OK
)
{
WARN
(
"script failed 0x%08x
\n
"
,
hr
);
WARN
(
"script failed 0x%08
l
x
\n
"
,
hr
);
goto
done
;
}
if
((
*
result_str
=
strdupWA
(
V_BSTR
(
&
retval
)
)))
...
...
@@ -568,7 +568,7 @@ BOOL WINAPI InternetGetProxyInfo( LPCSTR url, DWORD len_url, LPCSTR hostname, DW
WCHAR
*
urlW
=
NULL
,
*
hostnameW
=
NULL
;
BOOL
ret
=
FALSE
;
TRACE
(
"%s, %
u, %s, %
u, %p, %p
\n
"
,
debugstr_a
(
url
),
len_url
,
hostname
,
len_hostname
,
proxy
,
len_proxy
);
TRACE
(
"%s, %
lu, %s, %l
u, %p, %p
\n
"
,
debugstr_a
(
url
),
len_url
,
hostname
,
len_hostname
,
proxy
,
len_proxy
);
EnterCriticalSection
(
&
cs_jsproxy
);
...
...
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