From 091fd0f0f74003847ab5dd72a48e8f2978a511a5 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Fri, 11 Mar 2011 12:48:11 +0100 Subject: s3: Add wbint_LookupSids This will be called from wb_lookupsids to query remote DCs via lsa Signed-off-by: Jeremy Allison --- librpc/idl/lsa.idl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'librpc/idl') diff --git a/librpc/idl/lsa.idl b/librpc/idl/lsa.idl index fc59cd0433..c8aaa47c9d 100644 --- a/librpc/idl/lsa.idl +++ b/librpc/idl/lsa.idl @@ -519,7 +519,7 @@ import "misc.idl", "security.idl"; } lsa_TransSidArray; const int LSA_REF_DOMAIN_LIST_MULTIPLIER = 32; - typedef struct { + typedef [public] struct { [range(0,1000)] uint32 count; [size_is(count)] lsa_DomainInfo *domains; uint32 max_size; @@ -533,7 +533,7 @@ import "misc.idl", "security.idl"; * Level 6: Like 4 */ - typedef enum { + typedef [public] enum { LSA_LOOKUP_NAMES_ALL = 1, LSA_LOOKUP_NAMES_DOMAINS_ONLY = 2, LSA_LOOKUP_NAMES_PRIMARY_DOMAIN_ONLY = 3, @@ -563,7 +563,7 @@ import "misc.idl", "security.idl"; uint32 sid_index; } lsa_TranslatedName; - typedef struct { + typedef [public] struct { [range(0,20480)] uint32 count; [size_is(count)] lsa_TranslatedName *names; } lsa_TransNameArray; -- cgit