1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
#include "idl_types.h"
import "misc.idl";
[
uuid("d049b186-814f-11d1-9a3c-00c04fc9b232"),
version(1.1),
endpoint("ncacn_ip_tcp:", "ncalrpc:"),
helpstring("File Replication API"),
pointer_default(unique)
]
interface frsapi
{
/****************/
/* Function 0x00 */
void FRSAPI_VERIFY_PROMOTION();
/****************/
/* Function 0x01 */
void FRSAPI_PROMOTION_STATUS();
/****************/
/* Function 0x02 */
void FRSAPI_START_DEMOTION();
/****************/
/* Function 0x03 */
void FRSAPI_COMMIT_DEMOTION();
/****************/
/* Function 0x04 */
/* The DsPollingLongInterval and DsPollingShortInterval attributes
represent registry attributes below HKLM\System\CCS\Services\NtFrs */
WERROR frsapi_SetDsPollingIntervalW(
[in] uint32 CurrentInterval,
[in] uint32 DsPollingLongInterval,
[in] uint32 DsPollingShortInterval
);
/****************/
/* Function 0x05 */
WERROR frsapi_GetDsPollingIntervalW(
[out] uint32 *CurrentInterval,
[out] uint32 *DsPollingLongInterval,
[out] uint32 *DsPollingShortInterval
);
/****************/
/* Function 0x06 */
void FRSAPI_VERIFY_PROMOTION_W();
/****************/
/* Function 0x07 */
typedef enum {
FRSAPI_INFO_VERSION = 0,
FRSAPI_INFO_SETS = 1,
FRSAPI_INFO_DS = 2,
FRSAPI_INFO_MEMORY = 3,
FRSAPI_INFO_IDTABLE = 4,
FRSAPI_INFO_OUTLOG = 5,
FRSAPI_INFO_INLOG = 6,
FRSAPI_INFO_THREADS = 7,
FRSAPI_INFO_STAGE = 8,
FRSAPI_INFO_CONFIGTABLE = 9
} frsapi_InfoEnum;
void FRSAPI_INFO_W();
/****************/
/* Function 0x08 */
typedef [v1_enum] enum {
FRSAPI_REPLICA_SET_TYPE_0 = 0x00000000,
FRSAPI_REPLICA_SET_TYPE_DOMAIN = 0x00000002,
FRSAPI_REPLICA_SET_TYPE_DFS = 0x00000003
} frsapi_ReplicaSetType;
WERROR frsapi_IsPathReplicated(
[in,unique] [string,charset(UTF16)] uint16 *path,
[in] frsapi_ReplicaSetType replica_set_type,
[out] uint32 *unknown1,
[out] uint32 *unknown2,
[out] uint32 *unknown3,
[out] GUID *replica_set_guid
);
/****************/
/* Function 0x09 */
void FRSAPI_WRITER_COMMAND();
/****************/
/* Function 0x0a */
void FRSAPI_FORCE_REPLICATION();
}
|