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
9f3ff924
Commit
9f3ff924
authored
Feb 13, 2013
by
Jeff Latimer
Committed by
Alexandre Julliard
Feb 13, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wmvcore: Add stub implementation for WMCreateEditor.
parent
dd8ec999
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
26 additions
and
1 deletion
+26
-1
wmvcore.spec
dlls/wmvcore/wmvcore.spec
+1
-1
wmvcore_main.c
dlls/wmvcore/wmvcore_main.c
+9
-0
wmsdkidl.idl
include/wmsdkidl.idl
+16
-0
No files found.
dlls/wmvcore/wmvcore.spec
View file @
9f3ff924
...
...
@@ -6,7 +6,7 @@
@ stub WMValidateData
@ stdcall -private DllRegisterServer()
@ stub WMCreateBackupRestorer
@ st
ub WMCreateEditor
@ st
dcall WMCreateEditor(ptr)
@ stub WMCreateIndexer
@ stub WMCreateProfileManager
@ stdcall WMCreateReader(ptr long ptr)
...
...
dlls/wmvcore/wmvcore_main.c
View file @
9f3ff924
...
...
@@ -52,6 +52,15 @@ HRESULT WINAPI DllRegisterServer(void)
return
S_OK
;
}
HRESULT
WINAPI
WMCreateEditor
(
IWMMetadataEditor
**
editor
)
{
FIXME
(
"(%p): stub
\n
"
,
editor
);
*
editor
=
NULL
;
return
E_NOTIMPL
;
}
HRESULT
WINAPI
WMCreateReader
(
IUnknown
*
reserved
,
DWORD
rights
,
IWMSyncReader
**
reader
)
{
FIXME
(
"(%p, %x, %p): stub
\n
"
,
reserved
,
rights
,
reader
);
...
...
include/wmsdkidl.idl
View file @
9f3ff924
...
...
@@ -182,6 +182,22 @@ interface IWMOutputMediaProps : IWMMediaProps
[
object
,
uuid
(
96406b
d9
-
2b2b
-
11
d3
-
b36b
-
00
c04f6108ff
),
pointer_default
(
unique
),
local
]
interface
IWMMetadataEditor
:
IUnknown
{
HRESULT
Open
(
[
in
]
const
WCHAR
*
pwszFilename
)
;
HRESULT
Close
()
;
HRESULT
Flush
()
;
}
;
[
object
,
uuid
(
96406b
d6
-
2b2b
-
11
d3
-
b36b
-
00
c04f6108ff
),
pointer_default
(
unique
),
local
...
...
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