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
90d4f7f3
Commit
90d4f7f3
authored
Sep 06, 2017
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
Sep 06, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Added IMFMediaEventQueue interface.
Signed-off-by:
Alistair Leslie-Hughes
<
leslie_alistair@hotmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
af35aada
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
0 deletions
+18
-0
mfobjects.idl
include/mfobjects.idl
+18
-0
No files found.
include/mfobjects.idl
View file @
90d4f7f3
...
...
@@ -583,3 +583,21 @@ interface IMFPluginControl : IUnknown
HRESULT
GetDisabledByIndex
(
DWORD
pluginType
,
DWORD
index
,
CLSID
*
clsid
)
;
HRESULT
SetDisabled
(
DWORD
pluginType
,
REFCLSID
clsid
,
BOOL
disabled
)
;
}
[
object
,
uuid
(
36
f846fc
-
2256
-
48b6
-
b58e
-
e2b638316581
),
local
]
interface
IMFMediaEventQueue
:
IUnknown
{
HRESULT
GetEvent
(
[
in
]
DWORD
flags
,
[
out
]
IMFMediaEvent
**
event
)
;
HRESULT
BeginGetEvent
(
[
in
]
IMFAsyncCallback
*
callback
,
[
in
]
IUnknown
*
state
)
;
HRESULT
EndGetEvent
(
[
in
]
IMFAsyncResult
*
result
,
[
out
]
IMFMediaEvent
**
event
)
;
HRESULT
QueueEvent
(
[
in
]
IMFMediaEvent
*
event
)
;
HRESULT
QueueEventParamVar
(
[
in
]
MediaEventType
met
,
[
in
]
REFGUID
type
,
[
in
]
HRESULT
status
,
[
in
,
unique
]
const
PROPVARIANT
*
value
)
;
HRESULT
QueueEventParamUnk
(
[
in
]
MediaEventType
met
,
[
in
]
REFGUID
type
,
[
in
]
HRESULT
status
,
[
in
,
unique
]
IUnknown
*
unk
)
;
HRESULT
Shutdown
()
;
}
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