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
ce9b5a7e
Commit
ce9b5a7e
authored
Feb 10, 2019
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
Feb 11, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vssapi: Add CreateVssBackupComponentsInternal stub.
Signed-off-by:
Alistair Leslie-Hughes
<
leslie_alistair@hotmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
b21f85c1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
19 additions
and
1 deletion
+19
-1
main.c
dlls/vssapi/main.c
+7
-0
vssapi.spec
dlls/vssapi/vssapi.spec
+1
-1
vsbackup.idl
include/vsbackup.idl
+11
-0
No files found.
dlls/vssapi/main.c
View file @
ce9b5a7e
...
...
@@ -22,6 +22,7 @@
#include "winbase.h"
#include "vss.h"
#include "vswriter.h"
#include "vsbackup.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
vssapi
);
...
...
@@ -107,3 +108,9 @@ HRESULT __thiscall VSSAPI_CVssWriter_Unsubscribe( struct CVssWriter *writer )
FIXME
(
"%p
\n
"
,
writer
);
return
S_OK
;
}
HRESULT
WINAPI
CreateVssBackupComponentsInternal
(
IVssBackupComponents
**
backup
)
{
FIXME
(
"%p
\n
"
,
backup
);
return
E_NOTIMPL
;
}
dlls/vssapi/vssapi.spec
View file @
ce9b5a7e
...
...
@@ -75,7 +75,7 @@
@ stub ?Uninitialize@CVssJetWriter@@QAGXXZ
@ thiscall -arch=i386 ?Unsubscribe@CVssWriter@@QAGJXZ(ptr) VSSAPI_CVssWriter_Unsubscribe
@ cdecl -arch=win64 ?Unsubscribe@CVssWriter@@QEAAJXZ(ptr) VSSAPI_CVssWriter_Unsubscribe
@ st
ub CreateVssBackupComponentsInternal
@ st
dcall CreateVssBackupComponentsInternal(ptr)
@ stub CreateVssExamineWriterMetadataInternal
@ stub CreateVssExpressWriterInternal
@ stub CreateWriter
...
...
include/vsbackup.idl
View file @
ce9b5a7e
...
...
@@ -25,6 +25,17 @@ interface IVssEnumObject;
interface
IVssExamineWriterMetadata
;
interface
IVssWriterComponentsExt
;
cpp_quote
(
"#ifdef _cplusplus"
)
cpp_quote
(
"extern \"
C
\
" {"
)
cpp_quote
(
"#endif"
)
cpp_quote
(
"HRESULT WINAPI CreateVssBackupComponentsInternal(IVssBackupComponents **backup);"
)
cpp_quote
(
"#ifdef _cplusplus"
)
cpp_quote
(
"}"
)
cpp_quote
(
"#endif"
)
cpp_quote
(
"static inline HRESULT CreateVssBackupComponents(IVssBackupComponents **backup)"
)
cpp_quote
(
" { return CreateVssBackupComponentsInternal(backup); }"
)
[
uuid
(
"665
c1d5f
-
c218
-
414
d
-
a05d
-
7
fef5f9d5c86
"),
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