summaryrefslogtreecommitdiff
path: root/source4/librpc/idl/eventlog.idl
diff options
context:
space:
mode:
Diffstat (limited to 'source4/librpc/idl/eventlog.idl')
-rw-r--r--source4/librpc/idl/eventlog.idl32
1 files changed, 32 insertions, 0 deletions
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
+ );
+}