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
67bc1db5
Commit
67bc1db5
authored
Aug 14, 2017
by
Andrey Gusev
Committed by
Alexandre Julliard
Aug 16, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mfplat: Add MFTEnumEx stub.
Signed-off-by:
Andrey Gusev
<
andrey.goosev@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
3fd68e5b
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
1 deletion
+18
-1
main.c
dlls/mfplat/main.c
+14
-0
mfplat.spec
dlls/mfplat/mfplat.spec
+1
-1
mfapi.h
include/mfapi.h
+3
-0
No files found.
dlls/mfplat/main.c
View file @
67bc1db5
...
...
@@ -348,6 +348,20 @@ HRESULT WINAPI MFTEnum(GUID category, UINT32 flags, MFT_REGISTER_TYPE_INFO *inpu
}
/***********************************************************************
* MFTEnumEx (mfplat.@)
*/
HRESULT
WINAPI
MFTEnumEx
(
GUID
category
,
UINT32
flags
,
const
MFT_REGISTER_TYPE_INFO
*
input_type
,
const
MFT_REGISTER_TYPE_INFO
*
output_type
,
IMFActivate
***
activate
,
UINT32
*
pcount
)
{
FIXME
(
"(%s, %x, %p, %p, %p, %p): stub
\n
"
,
debugstr_guid
(
&
category
),
flags
,
input_type
,
output_type
,
activate
,
pcount
);
*
pcount
=
0
;
return
S_OK
;
}
/***********************************************************************
* MFTUnregister (mfplat.@)
*/
HRESULT
WINAPI
MFTUnregister
(
CLSID
clsid
)
...
...
dlls/mfplat/mfplat.spec
View file @
67bc1db5
...
...
@@ -135,7 +135,7 @@
@ stdcall MFStartup(long long)
@ stub MFStreamDescriptorProtectMediaType
@ stdcall MFTEnum(int128 long ptr ptr ptr ptr ptr)
@ st
ub MFTEnumEx
@ st
dcall MFTEnumEx(int128 long ptr ptr ptr ptr)
@ stub MFTGetInfo
@ stdcall MFTRegister(int128 int128 wstr long long ptr long ptr ptr)
@ stub MFTRegisterLocal
...
...
include/mfapi.h
View file @
67bc1db5
...
...
@@ -70,6 +70,9 @@ HRESULT WINAPI MFGetTimerPeriodicity(DWORD *periodicity);
HRESULT
WINAPI
MFTEnum
(
GUID
category
,
UINT32
flags
,
MFT_REGISTER_TYPE_INFO
*
input_type
,
MFT_REGISTER_TYPE_INFO
*
output_type
,
IMFAttributes
*
attributes
,
CLSID
**
pclsids
,
UINT32
*
pcount
);
HRESULT
WINAPI
MFTEnumEx
(
GUID
category
,
UINT32
flags
,
const
MFT_REGISTER_TYPE_INFO
*
input_type
,
const
MFT_REGISTER_TYPE_INFO
*
output_type
,
IMFActivate
***
activate
,
UINT32
*
pcount
);
HRESULT
WINAPI
MFLockPlatform
(
void
);
HRESULT
WINAPI
MFTRegister
(
CLSID
clsid
,
GUID
category
,
LPWSTR
name
,
UINT32
flags
,
UINT32
cinput
,
MFT_REGISTER_TYPE_INFO
*
input_types
,
UINT32
coutput
,
...
...
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