diff options
author | Günther Deschner <gd@samba.org> | 2008-01-14 17:10:31 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-01-14 17:31:30 +0100 |
commit | 88f2ca7fb5619b5121184d4ee55a7ce202e2b8d3 (patch) | |
tree | a61fbd5c9a39d99914a64d4d8d1519458c5549fa /source4/librpc/idl | |
parent | ecf52b2bc7c55fdc574f8dc58e90a9f52bdf1925 (diff) | |
download | samba-88f2ca7fb5619b5121184d4ee55a7ce202e2b8d3.tar.gz samba-88f2ca7fb5619b5121184d4ee55a7ce202e2b8d3.tar.bz2 samba-88f2ca7fb5619b5121184d4ee55a7ce202e2b8d3.zip |
Fill in IDL for lsa_SetInfoPolicy and lsa_SetInfoPolicy2.
Guenther
(This used to be commit 54458c46249e07176e2a5b37279a3c95d21df0ab)
Diffstat (limited to 'source4/librpc/idl')
-rw-r--r-- | source4/librpc/idl/lsa.idl | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/source4/librpc/idl/lsa.idl b/source4/librpc/idl/lsa.idl index ea94458936..5ac6d55229 100644 --- a/source4/librpc/idl/lsa.idl +++ b/source4/librpc/idl/lsa.idl @@ -239,7 +239,11 @@ import "security.idl"; /******************/ /* Function: 0x08 */ - NTSTATUS lsa_SetInfoPolicy (); + NTSTATUS lsa_SetInfoPolicy ( + [in] policy_handle *handle, + [in] uint16 level, + [in,switch_is(level)] lsa_PolicyInformation *info + ); /******************/ /* Function: 0x09 */ @@ -727,7 +731,11 @@ import "security.idl"; ); /* Function 0x2f */ - NTSTATUS lsa_SetInfoPolicy2(); + NTSTATUS lsa_SetInfoPolicy2( + [in] policy_handle *handle, + [in] uint16 level, + [in,switch_is(level)] lsa_PolicyInformation *info + ); /**********************/ /* Function 0x30 */ |