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:10:31 +0100 |
commit | aa9335491fc2a514572b78aa3726f1c3af116252 (patch) | |
tree | 518704e8b8823bf8e6fbeac4ad1e4d1d1212498a /source3 | |
parent | 351377a90e44d8011a697779d2e9e225427e5cbb (diff) | |
download | samba-aa9335491fc2a514572b78aa3726f1c3af116252.tar.gz samba-aa9335491fc2a514572b78aa3726f1c3af116252.tar.bz2 samba-aa9335491fc2a514572b78aa3726f1c3af116252.zip |
Fill in IDL for lsa_SetInfoPolicy and lsa_SetInfoPolicy2.
Guenther
(This used to be commit dceb9a4c80fb241e12fafc6229aa8e81f5d2df1a)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/librpc/idl/lsa.idl | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/source3/librpc/idl/lsa.idl b/source3/librpc/idl/lsa.idl index 6cf57b88d4..a7e04dc962 100644 --- a/source3/librpc/idl/lsa.idl +++ b/source3/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 */ @@ -710,7 +714,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 */ |