mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
16 lines
225 B
C++
16 lines
225 B
C++
#pragma once
|
|
|
|
namespace disc
|
|
{
|
|
enum class disc_type
|
|
{
|
|
invalid,
|
|
unknown,
|
|
ps1,
|
|
ps2,
|
|
ps3
|
|
};
|
|
|
|
disc_type get_disc_type(const std::string& path, std::string& disc_root, std::string& ps3_game_dir);
|
|
} // namespace disc
|