2007-10-16 12:55:05 +02:00
#include "idl_types.h"
import "misc.idl";
[
2006-08-16 14:49:22 +00:00
uuid("d049b186-814f-11d1-9a3c-00c04fc9b232"),
version(1.1),
endpoint("ncacn_ip_tcp:", "ncalrpc:"),
helpstring("File Replication API"),
2006-09-18 21:52:00 +00:00
pointer_default(unique)
2007-10-16 12:55:05 +02:00
]
2006-08-16 14:49:22 +00:00
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 */
2007-10-16 13:44:43 +02:00
/* The DsPollingLongInterval and DsPollingShortInterval attributes
represent registry attributes below HKLM\System\CCS\Services\NtFrs */
2007-10-16 11:16:35 +02:00
WERROR frsapi_SetDsPollingIntervalW(
[in] uint32 CurrentInterval,
[in] uint32 DsPollingLongInterval,
[in] uint32 DsPollingShortInterval
);
2006-08-16 14:49:22 +00:00
2007-10-16 13:44:43 +02:00
/****************/
/* Function 0x05 */
2007-10-16 11:16:35 +02:00
WERROR frsapi_GetDsPollingIntervalW(
2007-10-16 11:30:58 +02:00
[out] uint32 *CurrentInterval,
[out] uint32 *DsPollingLongInterval,
[out] uint32 *DsPollingShortInterval
2007-10-16 11:16:35 +02:00
);
2006-08-16 14:49:22 +00:00
/****************/
/* Function 0x06 */
void FRSAPI_VERIFY_PROMOTION_W();
/****************/
/* Function 0x07 */
2007-10-16 11:12:41 +02:00
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;
2006-08-16 14:49:22 +00:00
void FRSAPI_INFO_W();
/****************/
/* Function 0x08 */
2007-10-16 14:33:34 +02:00
typedef [v1_enum] enum {
FRSAPI_REPLICA_SET_TYPE_0 = 0x00000000,
FRSAPI_REPLICA_SET_TYPE_DOMAIN = 0x00000002,
FRSAPI_REPLICA_SET_TYPE_DFS = 0x00000003
} frsapi_ReplicaSetType;
2007-10-16 12:55:05 +02:00
WERROR frsapi_IsPathReplicated(
[in,unique] [string,charset(UTF16)] uint16 *path,
2007-10-16 14:33:34 +02:00
[in] frsapi_ReplicaSetType replica_set_type,
2007-10-16 12:55:05 +02:00
[out] uint32 *unknown1,
[out] uint32 *unknown2,
[out] uint32 *unknown3,
2007-10-16 14:33:34 +02:00
[out] GUID *replica_set_guid
2007-10-16 12:55:05 +02:00
);
2006-08-16 14:49:22 +00:00
/****************/
/* Function 0x09 */
void FRSAPI_WRITER_COMMAND();
2007-10-16 17:12:04 +02:00
/****************/
/* Function 0x0a */
2007-10-17 09:50:39 +02:00
/* not supported before w2k3 sp2 */
WERROR frsapi_ForceReplication(
2007-10-18 21:23:25 +02:00
[in,unique] GUID *guid1,
[in,unique] GUID *guid2,
2007-10-17 09:50:39 +02:00
[in,unique] [charset(UTF16),string] uint16 *replica_set,
[in,unique] [charset(UTF16),string] uint16 *partner_name
);
2007-10-16 17:12:04 +02:00
2006-08-16 14:49:22 +00:00
}