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
967657de
Commit
967657de
authored
Dec 14, 2010
by
Austin English
Committed by
Alexandre Julliard
Dec 15, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
urlmon: Add stubs for ordinals 410 and 423.
parent
86a7b45a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
0 deletions
+23
-0
urlmon.spec
dlls/urlmon/urlmon.spec
+3
-0
urlmon_main.c
dlls/urlmon/urlmon_main.c
+20
-0
No files found.
dlls/urlmon/urlmon.spec
View file @
967657de
...
...
@@ -89,3 +89,6 @@
@ stdcall UrlMkSetSessionOption(long ptr long long)
@ stub WriteHitLogging
@ stub ZonesReInit
410 stdcall @(long long) URLMON_410
423 stdcall @(long long long long) URLMON_423
dlls/urlmon/urlmon_main.c
View file @
967657de
...
...
@@ -862,3 +862,23 @@ BOOL WINAPI IsLoggingEnabledW(LPCWSTR url)
FIXME
(
"(%s)
\n
"
,
debugstr_w
(
url
));
return
FALSE
;
}
/***********************************************************************
* URLMON_410 (URLMON.410)
* Undocumented, added in IE8
*/
BOOL
WINAPI
URLMON_410
(
DWORD
unknown1
,
DWORD
unknown2
)
{
FIXME
(
"stub: %d %d
\n
"
,
unknown1
,
unknown2
);
return
FALSE
;
}
/***********************************************************************
* URLMON_423 (URLMON.423)
* Undocumented, added in IE8
*/
BOOL
WINAPI
URLMON_423
(
DWORD
unknown1
,
DWORD
unknown2
,
DWORD
unknown3
,
DWORD
unknown4
)
{
FIXME
(
"stub: %d %d %d %d
\n
"
,
unknown1
,
unknown2
,
unknown3
,
unknown4
);
return
FALSE
;
}
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