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
005808cb
Commit
005808cb
authored
Sep 16, 2011
by
Piotr Caban
Committed by
Alexandre Julliard
Sep 16, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
urlmon: Added 111 ordinal stub.
parent
4856bd10
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
0 deletions
+11
-0
urlmon.spec
dlls/urlmon/urlmon.spec
+1
-0
urlmon_main.c
dlls/urlmon/urlmon_main.c
+10
-0
No files found.
dlls/urlmon/urlmon.spec
View file @
005808cb
...
...
@@ -94,6 +94,7 @@
@ stub WriteHitLogging
@ stub ZonesReInit
111 stdcall @(wstr) IsProtectedModeURL
331 stdcall @(ptr long ptr) propsys.InitPropVariantFromBuffer
335 stdcall @(ptr long ptr) propsys.InitVariantFromBuffer
362 stdcall @(ptr ptr) propsys.InitVariantFromGUIDAsString
...
...
dlls/urlmon/urlmon_main.c
View file @
005808cb
...
...
@@ -907,6 +907,16 @@ BOOL WINAPI IsLoggingEnabledW(LPCWSTR url)
}
/***********************************************************************
* IsProtectedModeURL (URLMON.111)
* Undocumented, added in IE7
*/
BOOL
WINAPI
IsProtectedModeURL
(
const
WCHAR
*
url
)
{
FIXME
(
"stub: %s
\n
"
,
debugstr_w
(
url
));
return
TRUE
;
}
/***********************************************************************
* URLMON_410 (URLMON.410)
* Undocumented, added in IE8
*/
...
...
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