diff options
author | Shauren <shauren.trinity@gmail.com> | 2025-02-28 17:41:28 +0100 |
---|---|---|
committer | Ovahlord <dreadkiller@gmx.de> | 2025-04-05 10:32:12 +0200 |
commit | 64fcb3917685ab5b2feb75c2542911c12df6b6ba (patch) | |
tree | fdea77a819244d5b8ac4c6a823a4b6ec046ad522 /dep/CascLib/src/CascRootFile_OW.cpp | |
parent | c300859a083762526bacc0298ffd59ee77eb309c (diff) |
Dep/CascLib: Update to ladislav-zezula/CascLib@07ab5f37ad282cc101d5c17793c550a0a6d4637f
(cherry picked from commit 464d8e39e083a2f3a73f2c33a7b20036406541c8)
Diffstat (limited to 'dep/CascLib/src/CascRootFile_OW.cpp')
-rw-r--r-- | dep/CascLib/src/CascRootFile_OW.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/dep/CascLib/src/CascRootFile_OW.cpp b/dep/CascLib/src/CascRootFile_OW.cpp index 05a33ff7a51..41fb40dbc15 100644 --- a/dep/CascLib/src/CascRootFile_OW.cpp +++ b/dep/CascLib/src/CascRootFile_OW.cpp @@ -34,7 +34,7 @@ typedef struct _APM_HEADER_V3 // Followed by the array of APM_ENTRY (count is in "EntryCount") // Followed by the array of APM_PACKAGE (count is in "PackageCount") -} APM_HEADER_V3, * PAPM_HEADER_V3; +} APM_HEADER_V3, *PAPM_HEADER_V3; typedef struct _APM_HEADER_V2 { @@ -48,7 +48,7 @@ typedef struct _APM_HEADER_V2 // Followed by the array of APM_ENTRY (count is in "EntryCount") // Followed by the array of APM_PACKAGE (count is in "PackageCount") -} APM_HEADER_V2, * PAPM_HEADER_V2; +} APM_HEADER_V2, *PAPM_HEADER_V2; typedef struct _APM_HEADER_V1 { @@ -61,7 +61,7 @@ typedef struct _APM_HEADER_V1 // Followed by the array of APM_ENTRY (count is in "EntryCount") // Followed by the array of APM_PACKAGE (count is in "PackageCount") -} APM_HEADER_V1, * PAPM_HEADER_V1; +} APM_HEADER_V1, *PAPM_HEADER_V1; // On-disk format, size = 0x0C typedef struct _APM_ENTRY_V1 @@ -69,7 +69,7 @@ typedef struct _APM_ENTRY_V1 DWORD Index; DWORD HashA_Lo; // Must split the hashes in order to make this structure properly aligned DWORD HashA_Hi; -} APM_ENTRY_V1, * PAPM_ENTRY_V1; +} APM_ENTRY_V1, *PAPM_ENTRY_V1; // On-disk format, size = 0x14 typedef struct _APM_ENTRY_V2 @@ -91,7 +91,7 @@ typedef struct _APM_PACKAGE_ENTRY_V1 ULONGLONG PackageGUID; // 077 file ULONGLONG Unknown1; DWORD Unknown2; -} APM_PACKAGE_ENTRY_V1, * PAPM_PACKAGE_ENTRY_V1; +} APM_PACKAGE_ENTRY_V1, *PAPM_PACKAGE_ENTRY_V1; // On-disk format typedef struct _APM_PACKAGE_ENTRY_V2 |