~registry/dolphin-emu/triforce

« back to all changes in this revision

Viewing changes to Source/Core/DiscIO/Src/VolumeCreator.h

  • Committer: Sérgio Benjamim
  • Date: 2015-02-13 05:54:40 UTC
  • Revision ID: sergio_br2@yahoo.com.br-20150213055440-ey2rt3sjpy27km78
Dolphin Triforce branch from code.google, commit b957980 (4.0-315).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// Copyright 2013 Dolphin Emulator Project
 
2
// Licensed under GPLv2
 
3
// Refer to the license.txt file included.
 
4
 
 
5
#ifndef _VOLUME_CREATOR_H
 
6
#define _VOLUME_CREATOR_H
 
7
 
 
8
#include "Volume.h"
 
9
 
 
10
namespace DiscIO
 
11
{
 
12
IVolume* CreateVolumeFromFilename(const std::string& _rFilename, u32 _PartitionGroup = 0, u32 _VolumeNum = -1);
 
13
IVolume* CreateVolumeFromDirectory(const std::string& _rDirectory, bool _bIsWii, const std::string& _rApploader = "", const std::string& _rDOL = "");
 
14
bool IsVolumeWiiDisc(const IVolume *_rVolume);
 
15
bool IsVolumeWadFile(const IVolume *_rVolume);
 
16
} // namespace
 
17
 
 
18
#endif
 
19