diff options
author | Andrew Tridgell <tridge@samba.org> | 2004-04-18 04:32:04 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:51:18 -0500 |
commit | bfa370671bfce8fb9672fc4401232057b73f58ad (patch) | |
tree | 0b2dbf3d23aec20a57f0c3c4a28fbc96c0e5980a /source4/librpc/idl | |
parent | d5a860e0184c6eb111a285f625c19cdf2930d388 (diff) | |
download | samba-bfa370671bfce8fb9672fc4401232057b73f58ad.tar.gz samba-bfa370671bfce8fb9672fc4401232057b73f58ad.tar.bz2 samba-bfa370671bfce8fb9672fc4401232057b73f58ad.zip |
r268: added IDL and test code for samr_QueryDomainInfo2(),
samr_QueryUserInfo2(), samr_QueryDisplayInfo2() and
samr_GetDisplayEnumerationIndex2()
(This used to be commit fddda52500d482bde79994c14a0a822a1d305ac3)
Diffstat (limited to 'source4/librpc/idl')
-rw-r--r-- | source4/librpc/idl/samr.idl | 47 |
1 files changed, 43 insertions, 4 deletions
diff --git a/source4/librpc/idl/samr.idl b/source4/librpc/idl/samr.idl index 41071a1f9c..01bfc7ed7a 100644 --- a/source4/librpc/idl/samr.idl +++ b/source4/librpc/idl/samr.idl @@ -861,19 +861,58 @@ /************************/ /* Function 0x2e */ - NTSTATUS samr_QUERY_INFORMATION_DOMAIN2(); + + /* + how is this different from QueryDomainInfo ?? + */ + NTSTATUS samr_QueryDomainInfo2( + [in,ref] policy_handle *handle, + [in] uint16 level, + [out,switch_is(level)] samr_DomainInfo *info + ); /************************/ /* Function 0x2f */ - NTSTATUS samr_QUERY_INFORMATION_USER2(); + + /* + how is this different from QueryUserInfo ?? + */ + NTSTATUS samr_QueryUserInfo2( + [in,ref] policy_handle *handle, + [in] uint16 level, + [out,switch_is(level)] samr_UserInfo *info + ); /************************/ /* Function 0x30 */ - NTSTATUS samr_QUERY_DISPINFO2(); + + /* + how is this different from QueryDisplayInfo?? + */ + NTSTATUS samr_QueryDisplayInfo2( + [in,ref] policy_handle *handle, + [in] uint16 level, + [in] uint32 start_idx, + [in] uint32 max_entries, + [in] uint32 buf_size, + [out] uint32 total_size, + [out] uint32 returned_size, + [out,switch_is(level)] samr_DispInfo info + ); /************************/ /* Function 0x31 */ - NTSTATUS samr_GET_DISPLAY_ENUMERATION_INDEX2(); + + /* + how is this different from GetDisplayEnumerationIndex ?? + */ + NTSTATUS samr_GetDisplayEnumerationIndex2( + [in,ref] policy_handle *handle, + [in] uint16 level, + [in] samr_Name name, + [out] uint32 idx + ); + /************************/ /* Function 0x32 */ |