2015-05-24 04:32:32 +00:00
|
|
|
// Copyright 2009 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2+
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2014-02-10 18:54:46 +00:00
|
|
|
#pragma once
|
2009-03-28 08:57:34 +00:00
|
|
|
|
2010-02-16 08:46:21 +00:00
|
|
|
#include <string>
|
2014-02-17 10:18:15 +00:00
|
|
|
#include <vector>
|
2009-02-24 15:06:52 +00:00
|
|
|
|
2018-05-27 22:21:59 +00:00
|
|
|
namespace Common
|
|
|
|
{
|
2009-03-28 08:57:34 +00:00
|
|
|
// Returns a pointer to an array of strings with the device names
|
2018-05-27 22:24:43 +00:00
|
|
|
std::vector<std::string> GetCDDevices();
|
2009-02-24 15:06:52 +00:00
|
|
|
|
2009-03-28 08:57:34 +00:00
|
|
|
// Returns true if device is cdrom/dvd
|
2018-05-27 22:24:43 +00:00
|
|
|
bool IsCDROMDevice(std::string device);
|
2018-05-27 22:21:59 +00:00
|
|
|
} // namespace Common
|