diff options
author | Volker Lendecke <vl@samba.org> | 2009-10-12 16:43:19 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2009-10-13 20:34:25 +0200 |
commit | 1302526a74fe71b4cb56ff3c0ce26d6c5b71d360 (patch) | |
tree | f6b6a9ef88ece6ec2a5a6e4e39ffc4582b2da748 /source3/include | |
parent | f3869f90f5efeabd404cc0c61f41cc5fcaeefc61 (diff) | |
download | samba-1302526a74fe71b4cb56ff3c0ce26d6c5b71d360.tar.gz samba-1302526a74fe71b4cb56ff3c0ce26d6c5b71d360.tar.bz2 samba-1302526a74fe71b4cb56ff3c0ce26d6c5b71d360.zip |
s3:libsmb: Add cli_notify
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index 8fc4195495..6475a03b5d 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -2659,6 +2659,14 @@ struct tevent_req *cli_posix_rmdir_send(TALLOC_CTX *mem_ctx, const char *fname); NTSTATUS cli_posix_rmdir_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx); NTSTATUS cli_posix_rmdir(struct cli_state *cli, const char *fname); +struct tevent_req *cli_notify_send(TALLOC_CTX *mem_ctx, + struct tevent_context *ev, + struct cli_state *cli, uint16_t fnum, + uint32_t buffer_size, + uint32_t completion_filter, bool recursive); +NTSTATUS cli_notify_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx, + uint32_t *pnum_changes, + struct notify_change **pchanges); /* The following definitions come from libsmb/clifsinfo.c */ |