diff options
author | Günther Deschner <gd@samba.org> | 2008-02-04 11:27:22 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-02-04 11:27:22 +0100 |
commit | 1b05c213ecf1a6eb48d3086049680c9be12d88c8 (patch) | |
tree | cbe9bf460a2646ea1f6c9936704c74366f17d79b /source3/librpc/idl/eventlog.idl | |
parent | 639c7fc8becfedba1198d1f4325ab2482ea2ee9d (diff) | |
download | samba-1b05c213ecf1a6eb48d3086049680c9be12d88c8.tar.gz samba-1b05c213ecf1a6eb48d3086049680c9be12d88c8.tar.bz2 samba-1b05c213ecf1a6eb48d3086049680c9be12d88c8.zip |
Fix IDL for eventlog_ReadEventLogW().
Guenther
(This used to be commit f3377eb41d13b13082cd787e5437d0a92497a6b5)
Diffstat (limited to 'source3/librpc/idl/eventlog.idl')
-rw-r--r-- | source3/librpc/idl/eventlog.idl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source3/librpc/idl/eventlog.idl b/source3/librpc/idl/eventlog.idl index 0b0303a479..9fed2a4d6c 100644 --- a/source3/librpc/idl/eventlog.idl +++ b/source3/librpc/idl/eventlog.idl @@ -120,10 +120,10 @@ import "lsa.idl", "security.idl"; [in] policy_handle *handle, [in] uint32 flags, [in] uint32 offset, - [in] uint32 number_of_bytes, - [out,size_is(number_of_bytes)] uint8 *data, - [out] uint32 *sent_size, - [out] uint32 *real_size + [in] [range(0,0x7FFFF)] uint32 number_of_bytes, + [out,ref,size_is(number_of_bytes)] uint8 *data, + [out,ref] uint32 *sent_size, + [out,ref] uint32 *real_size ); /*****************/ |