summaryrefslogtreecommitdiff
path: root/source4/librpc/idl/samr.idl
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2005-01-05 00:41:49 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:08:18 -0500
commitd9ab65a8b40b540f163b454c6d543f090759cdae (patch)
tree52258a1ab8738f3c617d6dc96db78ba9431d96b1 /source4/librpc/idl/samr.idl
parent5526a6e891d36c02d8e52a6fdb56c3da5b9e9cf5 (diff)
downloadsamba-d9ab65a8b40b540f163b454c6d543f090759cdae.tar.gz
samba-d9ab65a8b40b540f163b454c6d543f090759cdae.tar.bz2
samba-d9ab65a8b40b540f163b454c6d543f090759cdae.zip
r4524: converted a few bits of samr.idl to use enum properly
(This used to be commit 82313fb79eb361d7cee06ada21c537a7cc57970e)
Diffstat (limited to 'source4/librpc/idl/samr.idl')
-rw-r--r--source4/librpc/idl/samr.idl14
1 files changed, 7 insertions, 7 deletions
diff --git a/source4/librpc/idl/samr.idl b/source4/librpc/idl/samr.idl
index e844074dd2..ac5a6d269a 100644
--- a/source4/librpc/idl/samr.idl
+++ b/source4/librpc/idl/samr.idl
@@ -397,7 +397,7 @@
NTSTATUS samr_QueryGroupInfo(
[in,ref] policy_handle *group_handle,
- [in] uint16 level,
+ [in] GroupInfo level,
[out,switch_is(level)] samr_GroupInfo *info
);
@@ -405,7 +405,7 @@
/* Function 0x15 */
NTSTATUS samr_SetGroupInfo(
[in,ref] policy_handle *group_handle,
- [in] uint16 level,
+ [in] GroupInfo level,
[in,switch_is(level),ref] samr_GroupInfo *info
);
@@ -493,8 +493,8 @@
} samr_AliasInfo;
NTSTATUS samr_QueryAliasInfo(
- [in,ref] policy_handle *alias_handle,
- [in] uint16 level,
+ [in,ref] policy_handle *alias_handle,
+ [in] AliasInfo level,
[out,switch_is(level)] samr_AliasInfo *info
);
@@ -502,8 +502,8 @@
/* Function 0x1d */
NTSTATUS samr_SetAliasInfo(
[in,ref] policy_handle *alias_handle,
- [in] uint16 level,
- [in,switch_is(level),ref] samr_AliasInfo *info
+ [in] AliasInfo level,
+ [in,switch_is(level),ref] samr_AliasInfo *info
);
/************************/
@@ -676,7 +676,7 @@
const int SAMR_FIELD_WORKSTATION = 0x00000400;
const int SAMR_FIELD_LOGON_HOURS = 0x00002000;
const int SAMR_FIELD_ACCT_FLAGS = 0x00100000;
- const int SAMR_FIELD_PARAMETERS = 0x00200000;
+ const int SAMR_FIELD_PARAMETERS = 0x00200000;
const int SAMR_FIELD_COUNTRY_CODE = 0x00400000;
const int SAMR_FIELD_CODE_PAGE = 0x00800000;
const int SAMR_FIELD_PASSWORD = 0x01000000; /* either of these */