mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
Protect dvdread with a critical section, should fix crashes when running ikaruga from a compressed iso. Some coding standard stuff.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@672 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -20,35 +20,23 @@
|
||||
#include "Volume.h"
|
||||
#include "Blob.h"
|
||||
|
||||
//
|
||||
// --- this volume type is used for GC and for decrypted Wii images ---
|
||||
//
|
||||
// --- this volume type is used for GC disc images ---
|
||||
|
||||
namespace DiscIO
|
||||
{
|
||||
class CVolumeGC
|
||||
: public IVolume
|
||||
class CVolumeGC : public IVolume
|
||||
{
|
||||
public:
|
||||
public:
|
||||
CVolumeGC(IBlobReader* _pReader);
|
||||
~CVolumeGC();
|
||||
bool Read(u64 _Offset, u64 _Length, u8* _pBuffer) const;
|
||||
std::string GetName() const;
|
||||
std::string GetUniqueID() const;
|
||||
ECountry GetCountry() const;
|
||||
u64 GetSize() const;
|
||||
|
||||
CVolumeGC(IBlobReader* _pReader);
|
||||
|
||||
~CVolumeGC();
|
||||
|
||||
bool Read(u64 _Offset, u64 _Length, u8* _pBuffer) const;
|
||||
|
||||
std::string GetName() const;
|
||||
|
||||
std::string GetUniqueID() const;
|
||||
|
||||
ECountry GetCountry() const;
|
||||
|
||||
u64 GetSize() const;
|
||||
|
||||
|
||||
private:
|
||||
|
||||
IBlobReader* m_pReader;
|
||||
private:
|
||||
IBlobReader* m_pReader;
|
||||
};
|
||||
} // namespace
|
||||
|
||||
} // namespace
|
||||
|
Reference in New Issue
Block a user