]> wimlib.net Git - wimlib/blobdiff - include/wimlib/header.h
lz_extend: little endian CPU is necessary for byte count to work
[wimlib] / include / wimlib / header.h
index 2bbb8388d7e8d928670605198cb8acab20354550..125457628d1806d5ffc1bf6f22b7115a1355036b 100644 (file)
@@ -3,10 +3,11 @@
 
 #include "wimlib/resource.h"
 #include "wimlib/types.h"
-#include "wimlib/endianness.h"
+
+#include <limits.h>
 
 /* Length of "Globally Unique ID" field in WIM header.  */
-#define WIM_GID_LEN    16
+#define WIM_GUID_LEN    16
 
 /* Length of the WIM header on disk.  wimlib currently requires that the header
  * be exactly this size.  */
@@ -73,7 +74,7 @@ struct wim_header_disk {
 
        /* +0x18: Globally unique identifier for the WIM file.  Basically a
         * bunch of random bytes.  */
-       u8 guid[WIM_GID_LEN];
+       u8 guid[WIM_GUID_LEN];
 
        /* +0x28: Number of this WIM part in the split WIM file, indexed from 1,
         * or 1 if the WIM is not split.  */
@@ -115,6 +116,7 @@ struct wim_header_disk {
        /* +0xd0 (208)  */
 } _packed_attribute;
 
+#define MAX_IMAGES (((INT_MAX < INT32_MAX) ? INT_MAX : INT32_MAX) - 1)
 
 /* In-memory representation of a WIM header.  See `struct wim_header_disk' for
  * field descriptions.  */
@@ -123,7 +125,7 @@ struct wim_header {
        u32 wim_version;
        u32 flags;
        u32 chunk_size;
-       u8 guid[WIM_GID_LEN];
+       u8 guid[WIM_GUID_LEN];
        u16 part_number;
        u16 total_parts;
        u32 image_count;