summaryrefslogtreecommitdiff
path: root/source3/librpc
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2008-01-14 17:37:35 +0100
committerGünther Deschner <gd@samba.org>2008-01-14 17:37:35 +0100
commite2d32e040758158daf6d08b112c56be4d36c2ba9 (patch)
tree573ab29e726a9fad2942464621338bc00b0910c5 /source3/librpc
parent662d61e742f89543362a2d96edbf504175ad7e74 (diff)
downloadsamba-e2d32e040758158daf6d08b112c56be4d36c2ba9.tar.gz
samba-e2d32e040758158daf6d08b112c56be4d36c2ba9.tar.bz2
samba-e2d32e040758158daf6d08b112c56be4d36c2ba9.zip
Use lsa_PolicyInfo enum in lsa policy info calls.
Guenther (This used to be commit 8b63a1665795d2739b54144212926113d9be7f09)
Diffstat (limited to 'source3/librpc')
-rw-r--r--source3/librpc/idl/lsa.idl10
1 files changed, 5 insertions, 5 deletions
diff --git a/source3/librpc/idl/lsa.idl b/source3/librpc/idl/lsa.idl
index a7e04dc962..7daf648a63 100644
--- a/source3/librpc/idl/lsa.idl
+++ b/source3/librpc/idl/lsa.idl
@@ -214,7 +214,7 @@ import "security.idl";
LSA_POLICY_INFO_AUDIT_FULL_SET=10,
LSA_POLICY_INFO_AUDIT_FULL_QUERY=11,
LSA_POLICY_INFO_DNS=12
- } lsaPolicyInfo;
+ } lsa_PolicyInfo;
typedef [switch_type(uint16)] union {
[case(LSA_POLICY_INFO_AUDIT_LOG)] lsa_AuditLogInfo audit_log;
@@ -233,7 +233,7 @@ import "security.idl";
NTSTATUS lsa_QueryInfoPolicy (
[in] policy_handle *handle,
- [in] uint16 level,
+ [in] lsa_PolicyInfo level,
[out,unique,switch_is(level)] lsa_PolicyInformation *info
);
@@ -241,7 +241,7 @@ import "security.idl";
/* Function: 0x08 */
NTSTATUS lsa_SetInfoPolicy (
[in] policy_handle *handle,
- [in] uint16 level,
+ [in] lsa_PolicyInfo level,
[in,switch_is(level)] lsa_PolicyInformation *info
);
@@ -709,14 +709,14 @@ import "security.idl";
NTSTATUS lsa_QueryInfoPolicy2(
[in] policy_handle *handle,
- [in] uint16 level,
+ [in] lsa_PolicyInfo level,
[out,unique,switch_is(level)] lsa_PolicyInformation *info
);
/* Function 0x2f */
NTSTATUS lsa_SetInfoPolicy2(
[in] policy_handle *handle,
- [in] uint16 level,
+ [in] lsa_PolicyInfo level,
[in,switch_is(level)] lsa_PolicyInformation *info
);