diff options
author | Gerald Carter <jerry@samba.org> | 2001-03-14 20:46:04 +0000 |
---|---|---|
committer | Gerald Carter <jerry@samba.org> | 2001-03-14 20:46:04 +0000 |
commit | 2335c1d1783cab97419eb13542526411c08be869 (patch) | |
tree | 61013ece7985d1da87e019a9048ea467adf4bcd6 /source3/include/proto.h | |
parent | bab69dcdf26cfa4888437fddc26fa6aa4ae7d3a4 (diff) | |
download | samba-2335c1d1783cab97419eb13542526411c08be869.tar.gz samba-2335c1d1783cab97419eb13542526411c08be869.tar.bz2 samba-2335c1d1783cab97419eb13542526411c08be869.zip |
last make proto got messed up it seems
(This used to be commit b28d51c8e8027231de843e8907f40772b4586eaa)
Diffstat (limited to 'source3/include/proto.h')
-rw-r--r-- | source3/include/proto.h | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index f05751760e..2b2237c586 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -901,10 +901,8 @@ BOOL cli_set_secdesc(struct cli_state *cli,int fd, SEC_DESC *sd); /*The following definitions come from libsmb/clistr.c */ int clistr_push(struct cli_state *cli, void *dest, const char *src, int dest_len, int flags); -int clistr_push_size(struct cli_state *cli, const void *dest, const char *src, int dest_len, int flags); int clistr_pull(struct cli_state *cli, char *dest, const void *src, int dest_len, int src_len, int flags); -int clistr_pull_size(struct cli_state *cli, const void *src, int src_len); -int clistr_align(struct cli_state *cli, int offset); +int clistr_align(const void *buf, const void *p); /*The following definitions come from libsmb/clitrans.c */ @@ -3454,7 +3452,7 @@ BOOL api_ntlsa_rpc(pipes_struct *p); /*The following definitions come from rpc_server/srv_lsa_hnd.c */ -void init_pipe_handles(pipes_struct *p); +BOOL init_pipe_handle_list(pipes_struct *p, char *pipe_name); BOOL create_policy_hnd(pipes_struct *p, POLICY_HND *hnd, void (*free_fn)(void *), void *data_ptr); BOOL find_policy_by_hnd(pipes_struct *p, POLICY_HND *hnd, void **data_p); BOOL close_policy_hnd(pipes_struct *p, POLICY_HND *hnd); @@ -4078,11 +4076,8 @@ void close_cnum(connection_struct *conn, uint16 vuid); /*The following definitions come from smbd/srvstr.c */ -int srvstr_push(void *inbuf, void *outbuf, void *dest, const char *src, int dest_len, int flags); -int srvstr_push_size(void *inbuf, void *outbuf, - const void *dest, const char *src, int dest_len, int flags); +int srvstr_push(void *outbuf, void *dest, const char *src, int dest_len, int flags); int srvstr_pull(void *inbuf, char *dest, const void *src, int dest_len, int src_len, int flags); -int srvstr_pull_size(void *inbuf, const void *src, int src_len); int srvstr_align(void *inbuf, int offset); /*The following definitions come from smbd/ssl.c */ |