X-Git-Url: https://wimlib.net/git/?a=blobdiff_plain;ds=sidebyside;f=include%2Fwimlib%2Fntfs_3g.h;h=0ee9da26818428a5b187bddb690858fd913c4ed6;hb=873a86a1a5097f2a161494341d8d962453a30465;hp=499c1aa5eaaebd0f98393088a212a1c4767ac2c6;hpb=5d3d469e410dc5f4a28814ad231336fc174cba56;p=wimlib diff --git a/include/wimlib/ntfs_3g.h b/include/wimlib/ntfs_3g.h index 499c1aa5..0ee9da26 100644 --- a/include/wimlib/ntfs_3g.h +++ b/include/wimlib/ntfs_3g.h @@ -1,34 +1,31 @@ #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" -#ifdef WITH_NTFS_3G -struct _ntfs_volume; -struct ntfs_location { - tchar *path; - utf16lechar *stream_name; - u16 stream_name_nchars; - struct _ntfs_volume *ntfs_vol; - bool is_reparse_point; -}; -#endif +struct blob_descriptor; +struct ntfs_location; +struct read_blob_callbacks; 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, + const struct read_blob_callbacks *cbs); +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 */