summaryrefslogtreecommitdiff
path: root/source3/include
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2009-02-04 21:32:20 +0100
committerGünther Deschner <gd@samba.org>2009-02-04 22:50:52 +0100
commit7ade5cf776a4aa04ae578cfeb46a54bfde53700f (patch)
tree1dbcecb27ad079cde1a9354580ed1164a64d784a /source3/include
parent858116d54e61f2d86757aecce3afba147434c7fc (diff)
downloadsamba-7ade5cf776a4aa04ae578cfeb46a54bfde53700f.tar.gz
samba-7ade5cf776a4aa04ae578cfeb46a54bfde53700f.tar.bz2
samba-7ade5cf776a4aa04ae578cfeb46a54bfde53700f.zip
s3-eventlog: remove old hand marshalling for eventlog read call.
Guenther
Diffstat (limited to 'source3/include')
-rw-r--r--source3/include/proto.h12
-rw-r--r--source3/include/rpc_eventlog.h19
2 files changed, 0 insertions, 31 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h
index 5cef54f82c..9067dcd4dc 100644
--- a/source3/include/proto.h
+++ b/source3/include/proto.h
@@ -5677,14 +5677,6 @@ uint32 size_of_relative_string(UNISTR *string);
/* The following definitions come from rpc_parse/parse_eventlog.c */
-bool eventlog_io_q_read_eventlog(const char *desc, EVENTLOG_Q_READ_EVENTLOG *q_u,
- prs_struct *ps, int depth);
-bool eventlog_io_r_read_eventlog(const char *desc,
- EVENTLOG_Q_READ_EVENTLOG *q_u,
- EVENTLOG_R_READ_EVENTLOG *r_u,
- prs_struct *ps,
- int depth);
-
/* The following definitions come from rpc_parse/parse_misc.c */
bool smb_io_time(const char *desc, NTTIME *nttime, prs_struct *ps, int depth);
@@ -6286,10 +6278,6 @@ NTSTATUS evlog_tdb_entry_to_evt_entry(TALLOC_CTX *mem_ctx,
/* The following definitions come from rpc_server/srv_eventlog_nt.c */
-NTSTATUS _eventlog_read_eventlog( pipes_struct * p,
- EVENTLOG_Q_READ_EVENTLOG * q_u,
- EVENTLOG_R_READ_EVENTLOG * r_u );
-
/* The following definitions come from rpc_server/srv_lsa_hnd.c */
bool init_pipe_handle_list(pipes_struct *p,
diff --git a/source3/include/rpc_eventlog.h b/source3/include/rpc_eventlog.h
index f17e448d9e..43bbc18285 100644
--- a/source3/include/rpc_eventlog.h
+++ b/source3/include/rpc_eventlog.h
@@ -37,14 +37,6 @@
/***********************************/
-typedef struct
-{
- POLICY_HND handle;
- uint32 flags;
- uint32 offset;
- uint32 max_read_size;
-} EVENTLOG_Q_READ_EVENTLOG;
-
typedef struct {
uint32 length;
uint32 reserved1;
@@ -85,16 +77,5 @@ typedef struct eventlog_entry {
uint8 *end_of_data_padding;
struct eventlog_entry *next;
} Eventlog_entry;
-
-typedef struct {
- uint32 num_bytes_in_resp;
- uint32 bytes_in_next_record;
- uint32 num_records;
- Eventlog_entry *entry;
- uint8 *end_of_entries_padding;
- uint32 sent_size;
- uint32 real_size;
- NTSTATUS status;
-} EVENTLOG_R_READ_EVENTLOG;
#endif /* _RPC_EVENTLOG_H */