forked from shawwwn/H2OExtractor
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
95 additions
and
1 deletion.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
/* ArchiveFile.cpp */ | ||
#include "ArchiveFile.h" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
/* ArchiveFile.h */ | ||
#pragma once | ||
|
||
#include "Types.h" | ||
|
||
#pragma pack(push, 1) | ||
struct ArchiveFile | ||
{ | ||
uint32_t CompressionTag; | ||
int32_t FolderNameIndex; | ||
int32_t FileNameIndex; | ||
uint32_t FileId; | ||
uint32_t RawSize; | ||
uint32_t CompressedSize; | ||
uint32_t Offest; | ||
char CRC32[4]; | ||
uint32_t UnknownConstant; | ||
}; | ||
#pragma pack(pop) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
/* ArchiveFileName.cpp */ | ||
#include "ArchiveFileName.h" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
/* ArchiveFileName.h */ | ||
#pragma once | ||
|
||
#include "Types.h" | ||
|
||
#pragma pack(push, 1) | ||
struct ArchiveFileName | ||
{ | ||
char* FileName; | ||
uint16_t NullTerminator; | ||
}; | ||
#pragma pack(pop) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
/* ArchiveFileNameChunk.cpp */ | ||
#include "ArchiveFileNameChunk.h" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
/* ArchiveFileNameChunk.h */ | ||
#pragma once | ||
|
||
#include "Types.h" | ||
|
||
#pragma pack(push, 1) | ||
struct ArchiveFileNameChunk | ||
{ | ||
uint32_t FileNameCount; | ||
uint32_t FileNameSize; | ||
}; | ||
#pragma pack(pop) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
/* ArchiveFileNameDesc.cpp */ | ||
#include "ArchiveFileNameDesc.h" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
/* ArchiveFileNameDesc.h */ | ||
#pragma once | ||
|
||
#include "Types.h" | ||
|
||
#pragma pack(push, 1) | ||
struct ArchiveFileNameDesc | ||
{ | ||
uint32_t CompressedSize; | ||
uint32_t RawSize; | ||
char CRC32[4]; | ||
char* CompressedChunk; | ||
}; | ||
#pragma pack(pop) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
/* ArchiveHeader.h */ | ||
#pragma once | ||
|
||
#include "Types.h" | ||
|
||
#pragma pack(push, 1) | ||
|