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