mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-12-15 04:29:37 +00:00
Add unpacktool
This commit is contained in:
15
unpacktool/CompactProParser.h
Normal file
15
unpacktool/CompactProParser.h
Normal file
@@ -0,0 +1,15 @@
|
||||
#pragma once
|
||||
|
||||
#include "IArchiveParser.h"
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
class CompactProParser : public IArchiveParser
|
||||
{
|
||||
public:
|
||||
bool Check(IFileReader &reader) override;
|
||||
ArchiveItemList *Parse(IFileReader &reader) override;
|
||||
|
||||
private:
|
||||
ArchiveItemList *ParseDirectory(uint32_t numEntries, IFileReader &reader);
|
||||
};
|
||||
Reference in New Issue
Block a user