From 8ea2cb2403d455fe899b91be414b88eda1b3eba6 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Wed, 16 Sep 2009 23:45:05 -0700 Subject: idl: added DsExecuteKCC IDL --- librpc/idl/drsuapi.idl | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) (limited to 'librpc/idl/drsuapi.idl') diff --git a/librpc/idl/drsuapi.idl b/librpc/idl/drsuapi.idl index 4ca7e568f3..f535763dc6 100644 --- a/librpc/idl/drsuapi.idl +++ b/librpc/idl/drsuapi.idl @@ -1316,7 +1316,25 @@ interface drsuapi /*****************/ /* Function 0x12 */ - [todo] WERROR DRSUAPI_EXECUTE_KCC(); + typedef bitmap { + DRSUAPI_DS_EXECUTE_KCC_ASYNCHRONOUS_OPERATION = 0x00000001, + DRSUAPI_DS_EXECUTE_KCC_DAMPED = 0x00000002 + } drsuapi_DsExecuteKCCFlags; + + typedef struct { + uint32 taskID; + drsuapi_DsExecuteKCCFlags flags; + } drsuapi_DsExecuteKCC1; + + typedef [switch_type(uint32)] union { + [case(1)] drsuapi_DsExecuteKCC1 ctr1; + } drsuapi_DsExecuteKCCRequest; + + WERROR drsuapi_DsExecuteKCC( + [in] policy_handle *bind_handle, + [in] uint32 level, + [in, ref, switch_is(level)] drsuapi_DsExecuteKCCRequest *req + ); /*****************/ /* Function 0x13 */ -- cgit