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
d7d07929
Commit
d7d07929
authored
Sep 07, 2018
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
Sep 10, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mfplat: Add MFTUnregisterLocal stub.
Signed-off-by:
Alistair Leslie-Hughes
<
leslie_alistair@hotmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
5b8565d6
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
1 deletion
+9
-1
main.c
dlls/mfplat/main.c
+7
-0
mfplat.spec
dlls/mfplat/mfplat.spec
+1
-1
mfapi.h
include/mfapi.h
+1
-0
No files found.
dlls/mfplat/main.c
View file @
d7d07929
...
...
@@ -240,6 +240,13 @@ HRESULT WINAPI MFTRegisterLocal(IClassFactory *factory, REFGUID category, LPCWST
return
S_OK
;
}
HRESULT
WINAPI
MFTUnregisterLocal
(
IClassFactory
*
factory
)
{
FIXME
(
"(%p)
\n
"
,
factory
);
return
S_OK
;
}
static
BOOL
match_type
(
const
WCHAR
*
clsid_str
,
const
WCHAR
*
type_str
,
MFT_REGISTER_TYPE_INFO
*
type
)
{
HKEY
htransform
,
hfilter
;
...
...
dlls/mfplat/mfplat.spec
View file @
d7d07929
...
...
@@ -141,7 +141,7 @@
@ stub MFTRegisterLocal(ptr ptr wstr long long ptr long ptr)
@ stub MFTRegisterLocalByCLSID
@ stdcall MFTUnregister(int128)
@ st
ub MFTUnregisterLocal
@ st
dcall MFTUnregisterLocal(ptr)
@ stub MFTUnregisterLocalByCLSID
@ stub MFTraceError
@ stub MFTraceFuncEnter
...
...
include/mfapi.h
View file @
d7d07929
...
...
@@ -85,6 +85,7 @@ HRESULT WINAPI MFShutdown(void);
HRESULT
WINAPI
MFStartup
(
ULONG
version
,
DWORD
flags
);
HRESULT
WINAPI
MFUnlockPlatform
(
void
);
HRESULT
WINAPI
MFTUnregister
(
CLSID
clsid
);
HRESULT
WINAPI
MFTUnregisterLocal
(
IClassFactory
*
factory
);
HRESULT
WINAPI
MFGetPluginControl
(
IMFPluginControl
**
);
#endif
/* __WINE_MFAPI_H */
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