diff options
author | Volker Lendecke <vl@samba.org> | 2010-07-26 08:34:35 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2010-07-26 09:51:37 +0200 |
commit | 0ba4404f21c76f139ca6ea287385dc2eb4817c4e (patch) | |
tree | 8349ea452614ace7edbbf4e9f90208a82dc71021 /source3/include | |
parent | 9851e1989aa87dbd121fb16062d5ec2e969f1b81 (diff) | |
download | samba-0ba4404f21c76f139ca6ea287385dc2eb4817c4e.tar.gz samba-0ba4404f21c76f139ca6ea287385dc2eb4817c4e.tar.bz2 samba-0ba4404f21c76f139ca6ea287385dc2eb4817c4e.zip |
s3: Convert cli_qpathinfo1 to cli_qpathinfo
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index 3759a78c72..cbfe103000 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -2642,7 +2642,17 @@ bool cli_NetServerEnum(struct cli_state *cli, char *workgroup, uint32 stype, void *state); bool cli_oem_change_password(struct cli_state *cli, const char *user, const char *new_password, const char *old_password); -bool cli_qpathinfo1(struct cli_state *cli, +struct tevent_req *cli_qpathinfo1_send(TALLOC_CTX *mem_ctx, + struct event_context *ev, + struct cli_state *cli, + const char *fname); +NTSTATUS cli_qpathinfo1_recv(struct tevent_req *req, + time_t *change_time, + time_t *access_time, + time_t *write_time, + SMB_OFF_T *size, + uint16 *mode); +NTSTATUS cli_qpathinfo1(struct cli_state *cli, const char *fname, time_t *change_time, time_t *access_time, |