blob: d9c17c58f393ecf819a496d63f60eddb3f2fcd2b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// Copyright 2009 Dolphin Emulator Project
// Licensed under GPLv2+
// Refer to the license.txt file included.
#pragma once
#include <string>
#include <vector>
namespace Common
{
// Returns a pointer to an array of strings with the device names
std::vector<std::string> GetCDDevices();
// Returns true if device is cdrom/dvd
bool IsCDROMDevice(std::string device);
} // namespace Common
|