]> wimlib.net Git - wimlib/blobdiff - include/wimlib/ntfs_3g.h
mount_image.c: add fallback definitions of RENAME_* constants
[wimlib] / include / wimlib / ntfs_3g.h
index 00b9fbdd21cd47a214d7284bb14b90749fa84bd6..03fc04b6b15748927beae0ed13b2ce0f9c73e24c 100644 (file)
@@ -1,23 +1,29 @@
 #ifndef _WIMLIB_NTFS_3G_H
 #define _WIMLIB_NTFS_3G_H
 
-#include "wimlib/callback.h"
+#ifdef WITH_NTFS_3G
+
 #include "wimlib/types.h"
 
-struct wim_lookup_table_entry;
-struct _ntfs_volume;
+struct blob_descriptor;
+struct consume_chunk_callback;
+struct ntfs_location;
+
+int
+read_ntfs_attribute_prefix(const struct blob_descriptor *blob, u64 size,
+                          const struct consume_chunk_callback *cb,
+                          bool recover_data);
 
-extern void
-libntfs3g_global_init(void);
+struct ntfs_location *
+clone_ntfs_location(const struct ntfs_location *loc);
 
-extern int
-read_ntfs_file_prefix(const struct wim_lookup_table_entry *lte,
-                     u64 size,
-                     consume_data_callback_t cb,
-                     void *cb_ctx);
+void
+free_ntfs_location(struct ntfs_location *loc);
 
+int
+cmp_ntfs_locations(const struct ntfs_location *loc1,
+                  const struct ntfs_location *loc2);
 
-extern int
-do_ntfs_umount(struct _ntfs_volume *vol);
+#endif /* WITH_NTFS_3G */
 
-#endif
+#endif /* _WIMLIB_NTFS_3G_H */