]> wimlib.net Git - wimlib/blobdiff - include/wimlib/resource.h
Remove begin_stream callback flags
[wimlib] / include / wimlib / resource.h
index 2eab7bee0cd0a04c7f3c03834cbfa1f058dff628..7861f871d289ba1e4edecaeb997b50a57b4a5782 100644 (file)
@@ -166,8 +166,8 @@ struct alt_chunk_table_header_disk {
 
        /* Compression format used for compressed chunks:
         * 0 = None
-        * 1 = LZX
-        * 2 = XPRESS
+        * 1 = XPRESS
+        * 2 = LZX
         * 3 = LZMS
         *
         * This overrides the compression type specified by the WIM header.  */
@@ -216,11 +216,6 @@ skip_wim_stream(struct wim_lookup_table_entry *lte);
  * @lte:
  *     Stream that is about to be read.
  *
- * @is_partial_res:
- *     Set to true if the stream is just one of several being read from a
- *     single pack and therefore would be extra expensive to read
- *     independently.
- *
  * @ctx:
  *     User-provided context.
  *
@@ -230,7 +225,6 @@ skip_wim_stream(struct wim_lookup_table_entry *lte);
  * (without calling @consume_chunk or @end_stream).
  */
 typedef int (*read_stream_list_begin_stream_t)(struct wim_lookup_table_entry *lte,
-                                              bool is_partial_res,
                                               void *ctx);
 
 #define BEGIN_STREAM_STATUS_SKIP_STREAM        -1