]> wimlib.net Git - wimlib/blobdiff - include/wimlib.h
Remove unnecessary argument to hlist iteration macros
[wimlib] / include / wimlib.h
index 9b629d66f40e8571df0fbe9fababd577cc3b915a..df0ec28fa9ea9982af40d6588612aa5eaae00029 100644 (file)
@@ -12,7 +12,7 @@
 /**
  * @mainpage
  *
- * This is the documentation for the library interface of wimlib 1.7.4, a C
+ * This is the documentation for the library interface of wimlib 1.8.0, a C
  * library for creating, modifying, extracting, and mounting files in the
  * Windows Imaging Format.  This documentation is intended for developers only.
  * If you have installed wimlib and want to know how to use the @b wimlib-imagex
 #define WIMLIB_MAJOR_VERSION 1
 
 /** Minor version of the library (for example, the 2 in 1.2.5). */
-#define WIMLIB_MINOR_VERSION 7
+#define WIMLIB_MINOR_VERSION 8
 
 /** Patch version of the library (for example, the 5 in 1.2.5). */
-#define WIMLIB_PATCH_VERSION 4
+#define WIMLIB_PATCH_VERSION 0
 
 #ifdef __cplusplus
 extern "C" {
@@ -1449,7 +1449,11 @@ struct wimlib_resource_entry {
         * solid resource in the WIM.  */
        uint64_t raw_resource_compressed_size;
 
-       uint64_t reserved[2];
+       /** If @p packed is 1, then this will specify the uncompressed size of
+        * the solid resource in the WIM.  */
+       uint64_t raw_resource_uncompressed_size;
+
+       uint64_t reserved[1];
 };
 
 /**