diff options
author | Volker Lendecke <vl@samba.org> | 2010-11-29 17:39:43 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2010-11-30 11:36:53 +0100 |
commit | 3f6705e8e3055133cc155797e66233d8a5919795 (patch) | |
tree | 26e0082535573faad4a5bf6b6204c371aca55ab8 /source3/include | |
parent | 10d1cd7af7962a2ce012f426947e9b0538e9f653 (diff) | |
download | samba-3f6705e8e3055133cc155797e66233d8a5919795.tar.gz samba-3f6705e8e3055133cc155797e66233d8a5919795.tar.bz2 samba-3f6705e8e3055133cc155797e66233d8a5919795.zip |
s3: Add cli_shadow_copy_data
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index 9f00e6da5c..85a7294d1a 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -2381,6 +2381,17 @@ struct tevent_req *cli_flush_send(TALLOC_CTX *mem_ctx, NTSTATUS cli_flush_recv(struct tevent_req *req); NTSTATUS cli_flush(TALLOC_CTX *mem_ctx, struct cli_state *cli, uint16_t fnum); +struct tevent_req *cli_shadow_copy_data_send(TALLOC_CTX *mem_ctx, + struct tevent_context *ev, + struct cli_state *cli, + uint16_t fnum, + bool get_names); +NTSTATUS cli_shadow_copy_data_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx, + char ***pnames, int *pnum_names); +NTSTATUS cli_shadow_copy_data(TALLOC_CTX *mem_ctx, struct cli_state *cli, + uint16_t fnum, bool get_names, + char ***pnames, int *pnum_names); + /* The following definitions come from libsmb/clirap2.c */ struct rap_group_info_1; struct rap_user_info_1; |