This commit is contained in:
yanczi 2025-11-06 03:24:15 +01:00
parent 6335472904
commit 66e776ee87
7 changed files with 24 additions and 16 deletions

View file

@ -27,7 +27,7 @@
#define SIGNATURE_KEY_FILE 1497713496 // XKEY
#define VERSION 100
#define VERSION 300
enum StoreMethod
{
@ -59,7 +59,7 @@ enum StoreMethod
struct CargoHead
{
std::string signature;
uint16_t version;
int16_t version;
uint32_t files;
uint64_t table;
};
@ -72,5 +72,5 @@ struct FilesTable
uint64_t offset;
uint32_t size;
uint64_t crc;
uint8_t isZip;
int8_t flag;
};