diff options
author | Günther Deschner <gd@samba.org> | 2008-11-04 11:35:48 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-11-06 18:50:03 +0100 |
commit | e721e3b7f57bebc0367fa9748db574c428283780 (patch) | |
tree | df4dbc2ecfdca07be47042ddd8fc9c027895f2fc /librpc | |
parent | 64fff239e0f378ce76946dc433d58545480d6dc0 (diff) | |
download | samba-e721e3b7f57bebc0367fa9748db574c428283780.tar.gz samba-e721e3b7f57bebc0367fa9748db574c428283780.tar.bz2 samba-e721e3b7f57bebc0367fa9748db574c428283780.zip |
netlogon-idl: use netr_ChangeLogEntry subcontext in netr_DatabaseRedo.
Guenther
Diffstat (limited to 'librpc')
-rw-r--r-- | librpc/idl/netlogon.idl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/librpc/idl/netlogon.idl b/librpc/idl/netlogon.idl index 7b68a8b540..fb26a8e18c 100644 --- a/librpc/idl/netlogon.idl +++ b/librpc/idl/netlogon.idl @@ -972,7 +972,7 @@ interface netlogon [default]; } netr_ChangeLogObject; - typedef [public] struct { + typedef [public,gensize] struct { uint32 serial_number1; uint32 serial_number2; uint32 object_rid; @@ -987,8 +987,8 @@ interface netlogon [in] [string,charset(UTF16)] uint16 computername[], [in] netr_Authenticator *credential, [in,out,ref] netr_Authenticator *return_authenticator, - [in,ref][size_is(change_log_entry_size)] uint8 *change_log_entry, - [in] uint32 change_log_entry_size, + [in] [subcontext(4),subcontext_size(change_log_entry_size)] netr_ChangeLogEntry change_log_entry, + [in] [value(ndr_size_netr_ChangeLogEntry(&change_log_entry, ndr->flags))] uint32 change_log_entry_size, [out,ref] netr_DELTA_ENUM_ARRAY **delta_enum_array ); |