summaryrefslogtreecommitdiffstats
path: root/source/include/proto.h
diff options
context:
space:
mode:
authorLuke Leighton <lkcl@samba.org>1999-11-27 22:47:17 +0000
committerLuke Leighton <lkcl@samba.org>1999-11-27 22:47:17 +0000
commit4c3556fae73c60693355f95f48ac63834ba4dd10 (patch)
treefa085b413d0be1efdca9e62af93807c272ecbcb1 /source/include/proto.h
parente4e5743a407b60c3695410eaf3df4ca3de4a870e (diff)
downloadsamba-4c3556fae73c60693355f95f48ac63834ba4dd10.tar.gz
samba-4c3556fae73c60693355f95f48ac63834ba4dd10.tar.xz
samba-4c3556fae73c60693355f95f48ac63834ba4dd10.zip
this one's a handle-based one (missed in the first round).
Diffstat (limited to 'source/include/proto.h')
-rw-r--r--source/include/proto.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/include/proto.h b/source/include/proto.h
index a481e2cccd4..fac04a152f8 100644
--- a/source/include/proto.h
+++ b/source/include/proto.h
@@ -1804,10 +1804,10 @@ BOOL rpc_con_pipe_req(struct cli_connection *con, uint8 op_num,
/*The following definitions come from rpc_client/cli_eventlog.c */
-BOOL do_event_open(struct cli_state *cli, uint16 fnum, char *log, POLICY_HND *hnd);
-BOOL do_event_close(struct cli_state *cli, uint16 fnum, POLICY_HND *hnd);
-BOOL do_event_numofeventlogrec(struct cli_state *cli, uint16 fnum, POLICY_HND *hnd, uint32 *number);
-BOOL do_event_readeventlog(struct cli_state *cli, uint16 fnum, POLICY_HND *hnd,
+BOOL event_open(const char* srv_name, const char *log, POLICY_HND *hnd);
+BOOL event_close( POLICY_HND *hnd);
+BOOL event_numofeventlogrec( POLICY_HND *hnd, uint32 *number);
+BOOL event_readeventlog(POLICY_HND *hnd,
uint32 number, uint32 flags, uint32 offset,
uint32 *number_of_bytes, EVENTLOGRECORD *ev);
@@ -2344,7 +2344,7 @@ BOOL brs_io_r_query_info(char *desc, BRS_R_QUERY_INFO *r_u, prs_struct *ps, int
/*The following definitions come from rpc_parse/parse_eventlog.c */
-BOOL make_eventlog_q_open(EVENTLOG_Q_OPEN *q_u, char *journal, char *unk);
+BOOL make_eventlog_q_open(EVENTLOG_Q_OPEN *q_u, const char *journal, char *unk);
BOOL eventlog_io_q_open(char *desc, EVENTLOG_Q_OPEN *q_u, prs_struct *ps, int depth);
BOOL eventlog_io_r_open(char *desc, EVENTLOG_R_OPEN *r_u, prs_struct *ps, int depth);
BOOL make_eventlog_q_close(EVENTLOG_Q_CLOSE *q_u, POLICY_HND *pol);