X-Git-Url: https://wimlib.net/git/?a=blobdiff_plain;f=include%2Fwimlib%2Fntfs_3g.h;h=7909e43e73f0e0fe0111e9841a4be09152c2040a;hb=90f1e04a2a143876a4413577b25db60b5ba0fe97;hp=b8ff37232bdfd1aec8f28d7788242fb56f136216;hpb=f7e62e27ceae4cf2ad2cc74b1a97ebf3015b95eb;p=wimlib diff --git a/include/wimlib/ntfs_3g.h b/include/wimlib/ntfs_3g.h index b8ff3723..7909e43e 100644 --- a/include/wimlib/ntfs_3g.h +++ b/include/wimlib/ntfs_3g.h @@ -1,24 +1,28 @@ #ifndef _WIMLIB_NTFS_3G_H #define _WIMLIB_NTFS_3G_H -#include "wimlib/callback.h" -#include "wimlib/types.h" +#ifdef WITH_NTFS_3G -struct wim_lookup_table_entry; -struct _ntfs_volume; +#include "wimlib/types.h" -extern void -libntfs3g_global_init(void); +struct blob_descriptor; +struct consume_chunk_callback; +struct ntfs_location; extern int -read_ntfs_file_prefix(const struct wim_lookup_table_entry *lte, - u64 size, - consume_data_callback_t cb, - void *cb_ctx, - int _ignored_flags); +read_ntfs_attribute_prefix(const struct blob_descriptor *blob, u64 size, + const struct consume_chunk_callback *cb); +extern struct ntfs_location * +clone_ntfs_location(const struct ntfs_location *loc); + +extern void +free_ntfs_location(struct ntfs_location *loc); extern int -do_ntfs_umount(struct _ntfs_volume *vol); +cmp_ntfs_locations(const struct ntfs_location *loc1, + const struct ntfs_location *loc2); + +#endif /* WITH_NTFS_3G */ -#endif +#endif /* _WIMLIB_NTFS_3G_H */