X-Git-Url: https://wimlib.net/git/?a=blobdiff_plain;f=include%2Fwimlib%2Fntfs_3g.h;h=6648e5a1cecb081e66b136df30e73e6f0351b8af;hb=3de1ec66f778edda19865482d685bc6f4e17faf7;hp=00b9fbdd21cd47a214d7284bb14b90749fa84bd6;hpb=26c7f8bb32e4a32001d409f1693e0df016270ed5;p=wimlib diff --git a/include/wimlib/ntfs_3g.h b/include/wimlib/ntfs_3g.h index 00b9fbdd..6648e5a1 100644 --- a/include/wimlib/ntfs_3g.h +++ b/include/wimlib/ntfs_3g.h @@ -4,18 +4,26 @@ #include "wimlib/callback.h" #include "wimlib/types.h" -struct wim_lookup_table_entry; +struct blob_descriptor; struct _ntfs_volume; +#ifdef WITH_NTFS_3G +struct _ntfs_volume; +struct ntfs_location { + struct _ntfs_volume *ntfs_vol; + char *path; + utf16lechar *attr_name; + unsigned attr_name_nchars; + unsigned attr_type; +}; +#endif + extern void libntfs3g_global_init(void); extern int -read_ntfs_file_prefix(const struct wim_lookup_table_entry *lte, - u64 size, - consume_data_callback_t cb, - void *cb_ctx); - +read_ntfs_attribute_prefix(const struct blob_descriptor *blob, u64 size, + consume_data_callback_t cb, void *cb_ctx); extern int do_ntfs_umount(struct _ntfs_volume *vol);