mirror of
https://github.com/libretro/Play-.git
synced 2024-11-27 18:50:28 +00:00
18 lines
457 B
C++
18 lines
457 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <memory>
|
|
#include <boost/filesystem.hpp>
|
|
#include "OpticalMedia.h"
|
|
|
|
namespace DiskUtils
|
|
{
|
|
typedef std::unique_ptr<COpticalMedia> OpticalMediaPtr;
|
|
typedef std::map<std::string, std::string> SystemConfigMap;
|
|
|
|
OpticalMediaPtr CreateOpticalMediaFromPath(const boost::filesystem::path&);
|
|
SystemConfigMap ParseSystemConfigFile(Framework::CStream*);
|
|
|
|
bool TryGetDiskId(const boost::filesystem::path&, std::string*);
|
|
}
|