mirror of
https://github.com/libretro/Play-.git
synced 2025-03-06 02:10:19 +00:00
26 lines
427 B
C++
26 lines
427 B
C++
#pragma once
|
|
|
|
#include "BlockProvider.h"
|
|
|
|
namespace ISO9660
|
|
{
|
|
|
|
class CVolumeDescriptor
|
|
{
|
|
public:
|
|
CVolumeDescriptor(CBlockProvider*);
|
|
~CVolumeDescriptor();
|
|
|
|
uint32 GetLPathTableAddress() const;
|
|
uint32 GetMPathTableAddress() const;
|
|
|
|
private:
|
|
uint8 m_type = 0;
|
|
char m_stdId[6];
|
|
char m_volumeId[33];
|
|
uint32 m_LPathTableAddress = 0;
|
|
uint32 m_MPathTableAddress = 0;
|
|
};
|
|
|
|
}
|