summaryrefslogtreecommitdiff
path: root/source3/include/vfs.h
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2012-06-05 10:37:34 +0200
committerStefan Metzmacher <metze@samba.org>2012-06-06 10:18:38 +0200
commit22cfc8eca8e6ab652ae9784a81ec0cf843e3dd1d (patch)
treef5b513c67d83880fcb37ff3b770b56307211096e /source3/include/vfs.h
parent5fc502c624f13306ba59f8388683d8fdc1c873a5 (diff)
downloadsamba-22cfc8eca8e6ab652ae9784a81ec0cf843e3dd1d.tar.gz
samba-22cfc8eca8e6ab652ae9784a81ec0cf843e3dd1d.tar.bz2
samba-22cfc8eca8e6ab652ae9784a81ec0cf843e3dd1d.zip
s3:include: move struct smb_file_time to vfs.h
metze
Diffstat (limited to 'source3/include/vfs.h')
-rw-r--r--source3/include/vfs.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/source3/include/vfs.h b/source3/include/vfs.h
index 39e524fa41..f60a2e7716 100644
--- a/source3/include/vfs.h
+++ b/source3/include/vfs.h
@@ -350,6 +350,14 @@ struct stream_struct {
char *name;
};
+/* time info */
+struct smb_file_time {
+ struct timespec mtime;
+ struct timespec atime;
+ struct timespec ctime;
+ struct timespec create_time;
+};
+
#define VFS_FIND(__fn__) while (handle->fns->__fn__##_fn==NULL) { \
handle = handle->next; \
}