From e1ffd2d612184fb1343cbe7e1d5d1aacebe0e8fa Mon Sep 17 00:00:00 2001 From: Gerald Carter Date: Thu, 27 Oct 2005 13:30:23 +0000 Subject: r11332: eventlog API uses NTSTATUS, not WERROR for return codes (This used to be commit f5f40633bc3f641a0fef4934375d0d829899b0d7) --- source3/include/rpc_eventlog.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'source3/include') diff --git a/source3/include/rpc_eventlog.h b/source3/include/rpc_eventlog.h index c94b2fa879..67e03edbc6 100644 --- a/source3/include/rpc_eventlog.h +++ b/source3/include/rpc_eventlog.h @@ -76,7 +76,7 @@ typedef struct { typedef struct { POLICY_HND handle; - WERROR status; + NTSTATUS status; } EVENTLOG_R_OPEN_EVENTLOG; @@ -88,7 +88,7 @@ typedef struct { typedef struct { POLICY_HND handle; - WERROR status; + NTSTATUS status; } EVENTLOG_R_CLOSE_EVENTLOG; @@ -100,7 +100,7 @@ typedef struct { typedef struct { uint32 num_records; - WERROR status; + NTSTATUS status; } EVENTLOG_R_GET_NUM_RECORDS; @@ -112,7 +112,7 @@ typedef struct { typedef struct { uint32 oldest_entry; - WERROR status; + NTSTATUS status; } EVENTLOG_R_GET_OLDEST_ENTRY; @@ -175,7 +175,7 @@ typedef struct { uint8 *end_of_entries_padding; uint32 sent_size; uint32 real_size; - WERROR status; + NTSTATUS status; } EVENTLOG_R_READ_EVENTLOG; @@ -187,7 +187,7 @@ typedef struct { } EVENTLOG_Q_CLEAR_EVENTLOG; typedef struct { - WERROR status; + NTSTATUS status; } EVENTLOG_R_CLEAR_EVENTLOG; #endif /* _RPC_EVENTLOG_H */ -- cgit