This commit is contained in:
2026-02-08 16:20:50 +08:00
parent 0ae47e5d6a
commit 8b88904ef7
72 changed files with 5963 additions and 2038 deletions

View File

@@ -22,6 +22,9 @@ public:
// 读整数
int ReadInt();
// 读无符号整数
unsigned int ReadUnsignedInt();
// 读字符串
std::string ReadString();
@@ -29,7 +32,9 @@ public:
std::string ReadInfo();
// 读LONG
int ReadLong();
long ReadLong();
// 读取无符号long
unsigned long ReadUnsignedLong();
// 读指定长度数据
BYTE *ReadCustomSize(int Size);