Play-/Source/hdd/ApaReader.h
Jean-Philip Desjardins 39d54b2056 HDD dump support improvements.
- Allow listing of partitions from Dopen/Dread.
- Support opening files not in the root directory.
2023-03-04 14:20:53 -05:00

20 lines
299 B
C++

#pragma once
#include <vector>
#include "Stream.h"
#include "ApaDefs.h"
namespace Hdd
{
class CApaReader
{
public:
CApaReader(Framework::CStream&);
std::vector<APA_HEADER> GetPartitions();
bool TryFindPartition(const char*, APA_HEADER&);
private:
Framework::CStream& m_stream;
};
}