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