summaryrefslogtreecommitdiff
path: root/source4/libcli/ndr/ndr_lsa.h
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2003-11-04 11:16:07 +0000
committerAndrew Tridgell <tridge@samba.org>2003-11-04 11:16:07 +0000
commit41304b3c5791be0a5492844a048784c4ef4acfe9 (patch)
tree117cefc3c6b69d2eb47d9452a7dae01cad7c3886 /source4/libcli/ndr/ndr_lsa.h
parent485f930088b524d704bed668d4ef118ca2f31bbe (diff)
downloadsamba-41304b3c5791be0a5492844a048784c4ef4acfe9.tar.gz
samba-41304b3c5791be0a5492844a048784c4ef4acfe9.tar.bz2
samba-41304b3c5791be0a5492844a048784c4ef4acfe9.zip
lsa_EnumSids() now works
(This used to be commit 25a8692fede323b53240192e5d349b39fe0b7342)
Diffstat (limited to 'source4/libcli/ndr/ndr_lsa.h')
-rw-r--r--source4/libcli/ndr/ndr_lsa.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/source4/libcli/ndr/ndr_lsa.h b/source4/libcli/ndr/ndr_lsa.h
index cfdd98e24e..0cc43b5f86 100644
--- a/source4/libcli/ndr/ndr_lsa.h
+++ b/source4/libcli/ndr/ndr_lsa.h
@@ -57,3 +57,16 @@ struct lsa_OpenPolicy2 {
NTSTATUS status;
} out;
};
+
+struct lsa_EnumSids {
+ struct {
+ struct policy_handle *handle;
+ uint32 start_at;
+ uint32 num_entries;
+ } in;
+ struct {
+ uint32 num_entries;
+ struct dom_sid **sids;
+ NTSTATUS status;
+ } out;
+};