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
0cdd4722
Commit
0cdd4722
authored
Dec 11, 2009
by
Aric Stewart
Committed by
Alexandre Julliard
Dec 14, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shlwapi: Beginning implementation of IUnknown_QueryServiceForWebBrowserApp.
parent
6f9533fe
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
25 additions
and
1 deletion
+25
-1
ordinal.c
dlls/shlwapi/ordinal.c
+24
-0
shlwapi.spec
dlls/shlwapi/shlwapi.spec
+1
-1
No files found.
dlls/shlwapi/ordinal.c
View file @
0cdd4722
...
...
@@ -4728,3 +4728,27 @@ INT WINAPI SHVerbExistsNA(LPSTR verb, PVOID pUnknown, PVOID pUnknown2, DWORD dwU
FIXME
(
"(%s, %p, %p, %i) STUB
\n
"
,
verb
,
pUnknown
,
pUnknown2
,
dwUnknown3
);
return
0
;
}
/*************************************************************************
* @ [SHLWAPI.538]
*
* Undocumented: Implementation guessed at via Name and behavior
*
* PARAMS
* lpUnknown [I] Object to get an IServiceProvider interface from
* riid [I] Function requested for QueryService call
* lppOut [O] Destination for the service interface pointer
*
* RETURNS
* Success: S_OK. lppOut contains an object providing the requested service
* Failure: An HRESULT error code
*
* NOTES
* lpUnknown is expected to support the IServiceProvider interface.
*/
HRESULT
WINAPI
IUnknown_QueryServiceForWebBrowserApp
(
IUnknown
*
lpUnknown
,
REFGUID
riid
,
LPVOID
*
lppOut
)
{
FIXME
(
"%p %s %p semi-STUB
\n
"
,
lpUnknown
,
debugstr_guid
(
riid
),
lppOut
);
return
IUnknown_QueryService
(
lpUnknown
,
&
IID_IWebBrowserApp
,
riid
,
lppOut
);
}
dlls/shlwapi/shlwapi.spec
View file @
0cdd4722
...
...
@@ -531,7 +531,7 @@
535 stub -noname SHPropertyBag_Delete
536 stub -noname IUnknown_QueryServicePropertyBag
537 stub -noname SHBoolSystemParametersInfo
538 st
ub -noname IUnknown_QueryServiceForWebBrowserApp
538 st
dcall -noname IUnknown_QueryServiceForWebBrowserApp(ptr ptr ptr)
539 stub -noname IUnknown_ShowBrowserBar
540 stub -noname SHInvokeCommandOnContextMenu
541 stub -noname SHInvokeCommandsOnContextMen
...
...
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