dolphin/Source/Core/Core/VolumeHandler.h
2013-12-31 14:03:19 -05:00

36 lines
838 B
C++

// Copyright 2013 Dolphin Emulator Project
// Licensed under GPLv2
// Refer to the license.txt file included.
// Disc volume handler. It's here because Wii discs can consist of multiple volumes.
// GC discs are seen as one big volume.
#ifndef _VOLUMEHANDLER_H_
#define _VOLUMEHANDLER_H_
#include <string>
#include "CommonTypes.h"
#include "Volume.h"
namespace VolumeHandler
{
bool SetVolumeName(const std::string& _rFullPath);
void SetVolumeDirectory(const std::string& _rFullPath, bool _bIsWii, const std::string& _rApploader = "", const std::string& _rDOL = "");
u32 Read32(u64 _Offset);
bool ReadToPtr(u8* ptr, u64 _dwOffset, u64 _dwLength);
bool RAWReadToPtr(u8* ptr, u64 _dwOffset, u64 _dwLength);
bool IsValid();
bool IsWii();
DiscIO::IVolume *GetVolume();
void EjectVolume();
} // end of namespace VolumeHandler
#endif