From 7159060450e4d5cd3d71e6a5c7837dcd648a6220 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Sun, 6 Sep 2009 14:47:06 +0200 Subject: s3:winbind: Convert WINBINDD_SET_MAPPING to the new API --- source3/librpc/idl/wbint.idl | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'source3/librpc/idl') diff --git a/source3/librpc/idl/wbint.idl b/source3/librpc/idl/wbint.idl index 05bd7b1fb3..642d7f6636 100644 --- a/source3/librpc/idl/wbint.idl +++ b/source3/librpc/idl/wbint.idl @@ -146,4 +146,16 @@ interface wbint NTSTATUS wbint_CheckMachineAccount( ); + + typedef [public] enum { + WBINT_ID_TYPE_NOT_SPECIFIED, + WBINT_ID_TYPE_UID, + WBINT_ID_TYPE_GID + } wbint_IdType; + + NTSTATUS wbint_SetMapping( + [in] dom_sid *sid, + [in] wbint_IdType type, + [in] hyper id + ); } \ No newline at end of file -- cgit