mirror of
https://github.com/libretro/Play-.git
synced 2025-01-07 17:10:21 +00:00
9b17a67670
Includes disk image creation routines, SYSTEM.CNF parser and "TryGetDiskId" helper.
18 lines
459 B
C++
18 lines
459 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <memory>
|
|
#include <boost/filesystem.hpp>
|
|
#include "ISO9660/ISO9660.h"
|
|
|
|
namespace DiskUtils
|
|
{
|
|
typedef std::unique_ptr<CISO9660> Iso9660Ptr;
|
|
typedef std::map<std::string, std::string> SystemConfigMap;
|
|
|
|
DiskUtils::Iso9660Ptr CreateDiskImageFromPath(const boost::filesystem::path&);
|
|
SystemConfigMap ParseSystemConfigFile(Framework::CStream*);
|
|
|
|
bool TryGetDiskId(const boost::filesystem::path&, std::string*);
|
|
}
|