diff options
author | Günther Deschner <gd@samba.org> | 2009-01-20 18:56:34 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2009-01-24 03:32:46 +0100 |
commit | 02a3a7f1eda576b353207825875f676130874a00 (patch) | |
tree | 58382e76dafa3301e5d600e814d6625ff2d4409a /librpc | |
parent | 321983a68e949db61cbb87c3fee84919231ed2dc (diff) | |
download | samba-02a3a7f1eda576b353207825875f676130874a00.tar.gz samba-02a3a7f1eda576b353207825875f676130874a00.tar.xz samba-02a3a7f1eda576b353207825875f676130874a00.zip |
eventlog: fill in IDL for eventlog_GetLogIntormation.
Guenther
Diffstat (limited to 'librpc')
-rw-r--r-- | librpc/idl/eventlog.idl | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/librpc/idl/eventlog.idl b/librpc/idl/eventlog.idl index a85a5efeaf8..0b49379bf4a 100644 --- a/librpc/idl/eventlog.idl +++ b/librpc/idl/eventlog.idl @@ -189,7 +189,18 @@ import "lsa.idl", "security.idl"; /*****************/ /* Function 0x16 */ - [todo] NTSTATUS eventlog_GetLogIntormation(); + + typedef struct { + boolean32 full; + } EVENTLOG_FULL_INFORMATION; + + NTSTATUS eventlog_GetLogIntormation( + [in] policy_handle *handle, + [in] uint32 level, + [out,ref] [size_is(buf_size)] uint8 *buffer, + [in] [range(0,1024)] uint32 buf_size, + [out,ref] uint32 *bytes_needed + ); /*****************/ /* Function 0x17 */ |