Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
fe7c3208
Commit
fe7c3208
authored
Jan 30, 2014
by
Jacek Caban
Committed by
Alexandre Julliard
Jan 30, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wmp: Added IProvideClassInfo2::GetGUID implementation.
parent
a6a52739
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
2 deletions
+19
-2
oleobj.c
dlls/wmp/oleobj.c
+10
-2
wmp.idl
include/wmp.idl
+9
-0
No files found.
dlls/wmp/oleobj.c
View file @
fe7c3208
...
...
@@ -291,8 +291,16 @@ static HRESULT WINAPI ProvideClassInfo2_GetClassInfo(IProvideClassInfo2 *iface,
static
HRESULT
WINAPI
ProvideClassInfo2_GetGUID
(
IProvideClassInfo2
*
iface
,
DWORD
dwGuidKind
,
GUID
*
pGUID
)
{
WindowsMediaPlayer
*
This
=
impl_from_IProvideClassInfo2
(
iface
);
FIXME
(
"(%p)->(%d %p)
\n
"
,
This
,
dwGuidKind
,
pGUID
);
return
E_NOTIMPL
;
TRACE
(
"(%p)->(%d %p)
\n
"
,
This
,
dwGuidKind
,
pGUID
);
if
(
dwGuidKind
!=
GUIDKIND_DEFAULT_SOURCE_DISP_IID
)
{
FIXME
(
"Unexpected dwGuidKind %d
\n
"
,
dwGuidKind
);
return
E_INVALIDARG
;
}
*
pGUID
=
IID__WMPOCXEvents
;
return
S_OK
;
}
static
const
IProvideClassInfo2Vtbl
ProvideClassInfo2Vtbl
=
{
...
...
include/wmp.idl
View file @
fe7c3208
...
...
@@ -31,6 +31,15 @@ import "ocidl.idl";
uuid
(
6b
f52a50
-
394
a
-
11
d3
-
b153
-
00
c04f79Faa6
)
]
library
WMPLib
{
importlib
(
"stdole2.tlb"
)
;
[
hidden
,
uuid
(
6b
f52a51
-
394
a
-
11
d3
-
b153
-
00
c04f79faa6
)
]
interface
_WMPOCXEvents
:
IDispatch
{}
[
helpstring
(
"Windows Media Player"
),
threading
(
apartment
),
...
...
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