]> wimlib.net Git - wimlib/blobdiff - include/wimlib/apply.h
wof.h: Add more ioctls
[wimlib] / include / wimlib / apply.h
index f8023a3706af18379754d36b5510b8eb4d1ee499..a93bc7ec714d317d5956b921a2d119f251e8b717 100644 (file)
@@ -1,6 +1,7 @@
 #ifndef _WIMLIB_APPLY_H
 #define _WIMLIB_APPLY_H
 
+#include "wimlib/file_io.h"
 #include "wimlib/types.h"
 #include "wimlib/list.h"
 #include "wimlib.h"
@@ -210,18 +211,21 @@ struct apply_ctx {
        size_t target_nchars;
        wimlib_progress_func_t progress_func;
        union wimlib_progress_info progress;
-       struct wim_dentry *extract_root;
        const struct apply_operations *ops;
+       struct list_head stream_list;
        struct wim_features supported_features;
+       bool root_dentry_is_special;
        u32 supported_attributes_mask;
-       struct list_head stream_list;
+
+       struct wim_dentry *target_dentry;
        tchar *realtarget;
        size_t realtarget_nchars;
        unsigned long invalid_sequence;
        unsigned long partial_security_descriptors;
        unsigned long no_security_descriptors;
+       struct filedes tmpfile_fd;
+       tchar *tmpfile_name;
        u64 num_streams_remaining;
-       bool root_dentry_is_special;
        uint64_t next_progress;
        intptr_t private[8];
 };