From 2fdf5d332d0a3c7a12fe4d7fdc0155dd7a45adc3 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Fri, 7 May 2004 23:55:52 +0000 Subject: r575: moved the SID_NAME_USE enum into samr.idl (This used to be commit 2cb06b39d91ef18b21c18e9376ccbd8076aeecf8) --- source4/librpc/idl/samr.idl | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'source4/librpc/idl/samr.idl') diff --git a/source4/librpc/idl/samr.idl b/source4/librpc/idl/samr.idl index c3dd05fd2d..eceaf784ec 100644 --- a/source4/librpc/idl/samr.idl +++ b/source4/librpc/idl/samr.idl @@ -294,6 +294,18 @@ /************************/ /* Function 0x10 */ + typedef enum { + SID_NAME_USE_NONE = 0,/* NOTUSED */ + SID_NAME_USER = 1, /* user */ + SID_NAME_DOM_GRP = 2, /* domain group */ + SID_NAME_DOMAIN = 3, /* domain: don't know what this is */ + SID_NAME_ALIAS = 4, /* local group */ + SID_NAME_WKN_GRP = 5, /* well-known group */ + SID_NAME_DELETED = 6, /* deleted account: needed for c2 rating */ + SID_NAME_INVALID = 7, /* invalid account */ + SID_NAME_UNKNOWN = 8 /* oops. */ + } samr_SidType; + typedef struct { uint32 count; [size_is(count)] uint32 *ids; -- cgit