Fixed AIFC Extraction

This commit is contained in:
KiritoDv
2023-09-03 20:11:35 -06:00
parent 1134723029
commit 063224c69d
9 changed files with 358 additions and 53 deletions
+2 -1
View File
@@ -33,8 +33,9 @@ class BinaryWriter {
void Write(uint64_t value);
void Write(float value);
void Write(double value);
void Write(const std::string& str);
void Write(const std::string& str, bool writeLength = true);
void Write(char* srcBuffer, size_t length);
void WriteByte(char value);
std::vector<char> ToVector();