diff options
author | Andrew Tridgell <tridge@samba.org> | 2003-12-02 10:04:10 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2003-12-02 10:04:10 +0000 |
commit | 16c688c9eaa7f4124553872e9d30273c2507df87 (patch) | |
tree | 6c37bd7750a993a9ba400f550aba00e7deb242c8 /source4/librpc | |
parent | 9ec42697604b46b7b43919c665e479f105a0226c (diff) | |
download | samba-16c688c9eaa7f4124553872e9d30273c2507df87.tar.gz samba-16c688c9eaa7f4124553872e9d30273c2507df87.tar.bz2 samba-16c688c9eaa7f4124553872e9d30273c2507df87.zip |
added netr_AccountSync(), another NT_STATUS_NOT_IMPLEMENTED call
according to w2k3
(This used to be commit b2ca00ebc57774000af2de6132c29db4c6daae28)
Diffstat (limited to 'source4/librpc')
-rw-r--r-- | source4/librpc/idl/netlogon.idl | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/source4/librpc/idl/netlogon.idl b/source4/librpc/idl/netlogon.idl index 06a2581fd4..16f699129e 100644 --- a/source4/librpc/idl/netlogon.idl +++ b/source4/librpc/idl/netlogon.idl @@ -612,7 +612,7 @@ interface netlogon uint8 computer_name[16]; uint32 timecreated; uint32 serial_number; - } UAS_INFO_0; + } netr_UAS_INFO_0; typedef struct { [flag(NDR_REMAINING)] DATA_BLOB blob; @@ -623,36 +623,36 @@ interface netlogon [in] unistr computername, [in] netr_Authenticator credential, [in,out] netr_Authenticator return_authenticator, - [in] UAS_INFO_0 uas, + [in] netr_UAS_INFO_0 uas, [in] uint32 count, [in] uint32 level, [in] uint32 buffersize, [out,subcontext(4)] netr_AccountBuffer buffer, [out] uint32 count_returned, [out] uint32 total_entries, - [out] UAS_INFO_0 recordid + [out] netr_UAS_INFO_0 recordid ); -#if 0 /*****************/ /* Function 0x0A */ NTSTATUS netr_AccountSync( - [in][string] wchar_t *logonserver, - [in][string][ref] wchar_t *computername, - [in][ref] AUTHENTICATOR credential, - [in][out][ref] AUTHENTICATOR return_authenticator, - [out][ref][size_is(count_returned)] uint8 *Buffer, - [out][ref] uint32 count_returned, - [out][ref] uint32 total_entries, - [out][ref] uint32 next_reference, - [in][long] reference, - [in][long] level, - [in][long] buffersize, - [in][out][ref] UAS_INFO_0 recordid, + [in] unistr *logonserver, + [in] unistr computername, + [in] netr_Authenticator credential, + [in,out] netr_Authenticator return_authenticator, + [in] uint32 reference, + [in] uint32 level, + [in] uint32 buffersize, + [out,subcontext(4)] netr_AccountBuffer buffer, + [out] uint32 count_returned, + [out] uint32 total_entries, + [out] uint32 next_reference, + [in,out] netr_UAS_INFO_0 recordid ); +#if 0 /*****************/ /* Function 0x0B */ |