summaryrefslogtreecommitdiffstats
path: root/source/include/rpc_eventlog.h
diff options
context:
space:
mode:
authorGerald Carter <jerry@samba.org>2005-10-27 13:30:23 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 11:05:13 -0500
commitf5f40633bc3f641a0fef4934375d0d829899b0d7 (patch)
tree31fec507da9cf21a95ec695191d9db8511dfdfc6 /source/include/rpc_eventlog.h
parent48a9e35208ae7b6271508085f59833e5def640e8 (diff)
downloadsamba-f5f40633bc3f641a0fef4934375d0d829899b0d7.tar.gz
samba-f5f40633bc3f641a0fef4934375d0d829899b0d7.tar.xz
samba-f5f40633bc3f641a0fef4934375d0d829899b0d7.zip
r11332: eventlog API uses NTSTATUS, not WERROR for return codes
Diffstat (limited to 'source/include/rpc_eventlog.h')
-rw-r--r--source/include/rpc_eventlog.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/source/include/rpc_eventlog.h b/source/include/rpc_eventlog.h
index c94b2fa8796..67e03edbc6e 100644
--- a/source/include/rpc_eventlog.h
+++ b/source/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 */