ReactOS
0.4.16-dev-963-g182f353
Toggle main menu visibility
Main Page
Related Pages
Modules
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
Functions
_
a
b
c
d
e
f
g
h
i
l
m
o
p
r
s
t
u
v
w
Variables
_
c
d
e
f
g
h
i
l
m
n
o
p
s
t
u
x
Typedefs
_
a
b
c
d
e
f
g
h
i
l
m
o
p
r
s
t
u
v
w
x
Enumerations
_
a
b
c
d
f
i
l
m
o
p
s
t
w
x
Enumerator
a
b
c
d
e
f
g
h
i
m
n
o
p
r
s
t
u
v
w
x
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
_
a
b
c
d
e
f
h
i
k
l
m
n
o
p
r
s
t
u
v
w
z
Enumerator
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Properties
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Related Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
v
x
Files
File List
File Members
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Variables
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerator
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Macros
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Examples
vswriter.idl
Go to the documentation of this file.
1
/*
2
* Copyright 2014 Hans Leidekker for CodeWeavers
3
*
4
* This library is free software; you can redistribute it and/or
5
* modify it under the terms of the GNU Lesser General Public
6
* License as published by the Free Software Foundation; either
7
* version 2.1 of the License, or (at your option) any later version.
8
*
9
* This library is distributed in the hope that it will be useful,
10
* but WITHOUT ANY WARRANTY; without even the implied warranty of
11
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12
* Lesser General Public License for more details.
13
*
14
* You should have received a copy of the GNU Lesser General Public
15
* License along with this library; if not, write to the Free Software
16
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
17
*/
18
import
"oaidl.idl"
;
19
20
typedef
enum
21
{
22
VSS_UT_UNDEFINED
,
23
VSS_UT_BOOTABLESYSTEMSTATE
,
24
VSS_UT_SYSTEMSERVICE
,
25
VSS_UT_USERDATA
,
26
VSS_UT_OTHER
27
}
VSS_USAGE_TYPE
;
28
29
typedef
enum
30
{
31
VSS_ST_UNDEFINED
,
32
VSS_ST_TRANSACTEDDB
,
33
VSS_ST_NONTRANSACTEDDB
,
34
VSS_ST_OTHER
35
}
VSS_SOURCE_TYPE
;
36
37
typedef
enum
38
{
39
VSS_AWS_UNDEFINED
,
40
VSS_AWS_NO_ALTERNATE_WRITER
,
41
VSS_AWS_ALTERNATE_WRITER_EXISTS
,
42
VSS_AWS_THIS_IS_ALTERNATE_WRITER
43
}
VSS_ALTERNATE_WRITER_STATE
;
44
45
typedef
enum
VSS_COMPONENT_TYPE
46
{
47
VSS_CT_UNDEFINED
,
48
VSS_CT_DATABASE
,
49
VSS_CT_FILEGROUP
50
}
VSS_COMPONENT_TYPE
;
51
52
typedef
enum
VSS_FILE_RESTORE_STATUS
53
{
54
VSS_RS_UNDEFINED
,
55
VSS_RS_NONE
,
56
VSS_RS_ALL
,
57
VSS_RS_FAILED
58
}
VSS_FILE_RESTORE_STATUS
;
VSS_COMPONENT_TYPE
VSS_COMPONENT_TYPE
Definition:
vswriter.idl:46
VSS_CT_DATABASE
@ VSS_CT_DATABASE
Definition:
vswriter.idl:48
VSS_CT_UNDEFINED
@ VSS_CT_UNDEFINED
Definition:
vswriter.idl:47
VSS_CT_FILEGROUP
@ VSS_CT_FILEGROUP
Definition:
vswriter.idl:49
VSS_ALTERNATE_WRITER_STATE
VSS_ALTERNATE_WRITER_STATE
Definition:
vswriter.idl:38
VSS_AWS_THIS_IS_ALTERNATE_WRITER
@ VSS_AWS_THIS_IS_ALTERNATE_WRITER
Definition:
vswriter.idl:42
VSS_AWS_ALTERNATE_WRITER_EXISTS
@ VSS_AWS_ALTERNATE_WRITER_EXISTS
Definition:
vswriter.idl:41
VSS_AWS_NO_ALTERNATE_WRITER
@ VSS_AWS_NO_ALTERNATE_WRITER
Definition:
vswriter.idl:40
VSS_AWS_UNDEFINED
@ VSS_AWS_UNDEFINED
Definition:
vswriter.idl:39
VSS_FILE_RESTORE_STATUS
VSS_FILE_RESTORE_STATUS
Definition:
vswriter.idl:53
VSS_RS_ALL
@ VSS_RS_ALL
Definition:
vswriter.idl:56
VSS_RS_FAILED
@ VSS_RS_FAILED
Definition:
vswriter.idl:57
VSS_RS_NONE
@ VSS_RS_NONE
Definition:
vswriter.idl:55
VSS_RS_UNDEFINED
@ VSS_RS_UNDEFINED
Definition:
vswriter.idl:54
VSS_SOURCE_TYPE
VSS_SOURCE_TYPE
Definition:
vswriter.idl:30
VSS_ST_OTHER
@ VSS_ST_OTHER
Definition:
vswriter.idl:34
VSS_ST_UNDEFINED
@ VSS_ST_UNDEFINED
Definition:
vswriter.idl:31
VSS_ST_NONTRANSACTEDDB
@ VSS_ST_NONTRANSACTEDDB
Definition:
vswriter.idl:33
VSS_ST_TRANSACTEDDB
@ VSS_ST_TRANSACTEDDB
Definition:
vswriter.idl:32
VSS_USAGE_TYPE
VSS_USAGE_TYPE
Definition:
vswriter.idl:21
VSS_UT_SYSTEMSERVICE
@ VSS_UT_SYSTEMSERVICE
Definition:
vswriter.idl:24
VSS_UT_USERDATA
@ VSS_UT_USERDATA
Definition:
vswriter.idl:25
VSS_UT_UNDEFINED
@ VSS_UT_UNDEFINED
Definition:
vswriter.idl:22
VSS_UT_OTHER
@ VSS_UT_OTHER
Definition:
vswriter.idl:26
VSS_UT_BOOTABLESYSTEMSTATE
@ VSS_UT_BOOTABLESYSTEMSTATE
Definition:
vswriter.idl:23
sdk
include
psdk
vswriter.idl
Generated on Mon Apr 7 2025 06:15:02 for ReactOS by
1.9.6