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
39cc1216
Commit
39cc1216
authored
May 17, 2019
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
May 17, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
urlmon: Add GetIUriPriv stub.
Signed-off-by:
Dmitry Timoshkov
<
dmitry@baikal.ru
>
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
d622ebdb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
0 deletions
+13
-0
urlmon.spec
dlls/urlmon/urlmon.spec
+1
-0
urlmon_main.c
dlls/urlmon/urlmon_main.c
+12
-0
No files found.
dlls/urlmon/urlmon.spec
View file @
39cc1216
...
...
@@ -53,6 +53,7 @@
@ stdcall GetClassFileOrMime(ptr wstr ptr long wstr long ptr)
@ stub GetClassURL
@ stub GetComponentIDFromCLSSPEC
@ stdcall GetIUriPriv(ptr ptr)
@ stub GetMarkOfTheWeb
@ stdcall GetSoftwareUpdateInfo(wstr ptr)
@ stub HlinkGoBack
...
...
dlls/urlmon/urlmon_main.c
View file @
39cc1216
...
...
@@ -838,3 +838,15 @@ BOOL WINAPI ShouldShowIntranetWarningSecband(DWORD unk)
FIXME
(
"%x: stub
\n
"
,
unk
);
return
FALSE
;
}
/***********************************************************************
* GetIUriPriv (urlmon.@)
*
* Not documented.
*/
HRESULT
WINAPI
GetIUriPriv
(
IUri
*
uri
,
void
**
p
)
{
FIXME
(
"(%p,%p): stub
\n
"
,
uri
,
p
);
*
p
=
NULL
;
return
E_NOTIMPL
;
}
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