Files
dolphin/Source/Core/Common/CDUtils.h
T

11 lines
242 B
C++
Raw Normal View History

#pragma once
2009-03-28 08:57:34 +00:00
#include <string>
2014-02-17 05:18:15 -05:00
#include <vector>
2009-02-24 15:06:52 +00:00
2009-03-28 08:57:34 +00:00
// Returns a pointer to an array of strings with the device names
std::vector<std::string> cdio_get_devices();
2009-02-24 15:06:52 +00:00
2009-03-28 08:57:34 +00:00
// Returns true if device is cdrom/dvd
bool cdio_is_cdrom(std::string device);