From a0544cb82154ee7fc6652f1301b294050e66ba04 Mon Sep 17 00:00:00 2001 From: =?utf8?q?G=C3=BCnther=20Deschner?= Date: Tue, 21 Jul 2015 22:28:32 +0200 Subject: [PATCH] remact: use imp_levels enum in RemoteActivation IDL. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Guenther Signed-off-by: Günther Deschner Reviewed-by: Jeremy Allison --- librpc/idl/remact.idl | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/librpc/idl/remact.idl b/librpc/idl/remact.idl index dcf99557544..77134e7eee4 100644 --- a/librpc/idl/remact.idl +++ b/librpc/idl/remact.idl @@ -12,8 +12,7 @@ import "misc.idl", "orpc.idl"; ] interface IRemoteActivation { - typedef enum - { + typedef [v1_enum] enum { RPC_C_IMP_LEVEL_DEFAULT = 0, RPC_C_IMP_LEVEL_ANONYMOUS = 1, RPC_C_IMP_LEVEL_IDENTIFY = 2, @@ -29,7 +28,7 @@ interface IRemoteActivation [in] GUID Clsid, [in] [unique,string,charset(UTF16)] uint16 *pwszObjectName, [in] [unique] MInterfacePointer *pObjectStorage, - [in] uint32 ClientImpLevel, + [in] imp_levels ClientImpLevel, [in] uint32 Mode, [in,range(1,32768)] uint32 Interfaces, [in,unique,size_is(Interfaces)] GUID *pIIDs, -- 2.47.2