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
37419c4a
Commit
37419c4a
authored
Nov 16, 2012
by
Christian Costa
Committed by
Alexandre Julliard
Nov 20, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wmvcore: Add stub for DllRegisterServer.
parent
da87b102
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
1 deletion
+8
-1
wmvcore.spec
dlls/wmvcore/wmvcore.spec
+1
-1
wmvcore_main.c
dlls/wmvcore/wmvcore_main.c
+7
-0
No files found.
dlls/wmvcore/wmvcore.spec
View file @
37419c4a
...
...
@@ -4,7 +4,7 @@
@ stub WMCreateSyncReaderPriv
@ stub WMIsAvailableOffline
@ stub WMValidateData
@ st
ub DllRegisterServer
@ st
dcall -private DllRegisterServer()
@ stub WMCreateBackupRestorer
@ stub WMCreateEditor
@ stub WMCreateIndexer
...
...
dlls/wmvcore/wmvcore_main.c
View file @
37419c4a
...
...
@@ -45,6 +45,13 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
return
TRUE
;
}
HRESULT
WINAPI
DllRegisterServer
(
void
)
{
FIXME
(
"(): stub
\n
"
);
return
S_OK
;
}
HRESULT
WINAPI
WMCreateReader
(
IUnknown
*
reserved
,
DWORD
rights
,
IWMSyncReader
**
reader
)
{
FIXME
(
"(%p, %x, %p): stub
\n
"
,
reserved
,
rights
,
reader
);
...
...
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