s3: Change unix_convert (and its callers) to use struct smb_filename
[metze/samba/wip.git] / source3 / include / smb.h
index abcd49451c2b9e6b0defe3386951d5483a88cd4d..9332df3cd27bb07f7fa9cc361f39339e451d3294 100644 (file)
@@ -1925,4 +1925,20 @@ struct smb_file_time {
        struct timespec create_time;
 };
 
+/*
+ * unix_convert_flags
+ */
+#define UCF_SAVE_LCOMP                 0x00000001
+#define UCF_ALLOW_WCARD_LCOMP          0x00000002
+
+/*
+ * smb_filename
+ */
+struct smb_filename {
+       char *base_name;
+       char *stream_name;
+       char *original_lcomp;
+       SMB_STRUCT_STAT st;
+};
+
 #endif /* _SMB_H */