]> wimlib.net Git - wimlib/blob - include/wimlib/ntfs_3g.h
security.c: Rewrite some code
[wimlib] / include / wimlib / ntfs_3g.h
1 #ifndef _WIMLIB_NTFS_3G_H
2 #define _WIMLIB_NTFS_3G_H
3
4 #include "wimlib/callback.h"
5 #include "wimlib/types.h"
6
7 struct wim_lookup_table_entry;
8 struct _ntfs_volume;
9
10 extern void
11 libntfs3g_global_init(void);
12
13 extern int
14 read_ntfs_file_prefix(const struct wim_lookup_table_entry *lte,
15                       u64 size,
16                       consume_data_callback_t cb,
17                       void *ctx_or_buf,
18                       int _ignored_flags);
19
20
21 extern int
22 do_ntfs_umount(struct _ntfs_volume *vol);
23
24 #endif