From 4a22dd61c08d0130342012c6ac60eb151f601f3a Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Tue, 5 Jun 2012 10:38:48 +0200 Subject: s3:include: move struct smb_filename to vfs.h metze --- source3/include/vfs.h | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'source3/include/vfs.h') diff --git a/source3/include/vfs.h b/source3/include/vfs.h index f60a2e7716..f9641d6f63 100644 --- a/source3/include/vfs.h +++ b/source3/include/vfs.h @@ -358,6 +358,16 @@ struct smb_file_time { struct timespec create_time; }; +/* + * smb_filename + */ +struct smb_filename { + char *base_name; + char *stream_name; + char *original_lcomp; + SMB_STRUCT_STAT st; +}; + #define VFS_FIND(__fn__) while (handle->fns->__fn__##_fn==NULL) { \ handle = handle->next; \ } -- cgit