diff options
author | Gerald Carter <jerry@samba.org> | 2006-09-18 19:46:11 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:52:01 -0500 |
commit | 738f168eccca161f2e2814f78338af36243210cc (patch) | |
tree | 804c67e37ad51df37142973fff96aefa9ff826a7 /source3/librpc/idl | |
parent | 505f1d1e0415edbe68c92b396d81aca96ccfbca1 (diff) | |
download | samba-738f168eccca161f2e2814f78338af36243210cc.tar.gz samba-738f168eccca161f2e2814f78338af36243210cc.tar.bz2 samba-738f168eccca161f2e2814f78338af36243210cc.zip |
r18623: starting on eventlog IDL
(This used to be commit 6cb7b6226da0b3060f4850fc2cc2ca82fbdcaa8f)
Diffstat (limited to 'source3/librpc/idl')
-rw-r--r-- | source3/librpc/idl/eventlog.idl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/librpc/idl/eventlog.idl b/source3/librpc/idl/eventlog.idl index c8a146b272..5e14a909c8 100644 --- a/source3/librpc/idl/eventlog.idl +++ b/source3/librpc/idl/eventlog.idl @@ -80,7 +80,7 @@ /* Function: 0x04 */ NTSTATUS eventlog_GetNumRecords( [in] policy_handle *handle, - [out] uint32 number + [out,ref] uint32 *number ); /******************/ @@ -118,8 +118,8 @@ [in] uint32 offset, [in] uint32 number_of_bytes, [out,size_is(number_of_bytes)] uint8 *data, - [out] uint32 sent_size, - [out] uint32 real_size + [out,ref] uint32 *sent_size, + [out,ref] uint32 *real_size ); /*****************/ |