From 20730626af0b1aee6149fb7c537d185899ad0cef Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Thu, 20 Nov 2003 21:52:40 +0000 Subject: Add initial work on eventlog - doesn't quite work yet. (This used to be commit 99fff7b1e24ee7231fa41ca9cb85382637f2b2b0) --- source4/librpc/idl/eventlog.idl | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 source4/librpc/idl/eventlog.idl (limited to 'source4/librpc/idl') diff --git a/source4/librpc/idl/eventlog.idl b/source4/librpc/idl/eventlog.idl new file mode 100644 index 0000000000..574868ab94 --- /dev/null +++ b/source4/librpc/idl/eventlog.idl @@ -0,0 +1,32 @@ +/* + eventlog interface definition +*/ +[ uuid(82273fdc-e32a-17c3-3f78-827929dc23ea), + version(1.0), + pointer_default(unique) +] interface eventlog +{ + /******************/ + /* Function: 0x00 */ + NTSTATUS eventlog_OpenEventLog( + [in] unistr *servername, + [in] unistr *sourcename, + [out,ref] policy_handle *handle + ); + + /******************/ + /* Function: 0x01 */ + NTSTATUS eventlog_GetNumRecords( + ); + + /******************/ + /* Function: 0x02 */ + NTSTATUS eventlog_ReadEventLog( + ); + + /******************/ + /* Function: 0x03 */ + NTSTATUS eventlog_CloseEventLog( + [in,out,ref] policy_handle *handle + ); +} -- cgit