CDUtils: Amend function names

Amends the function names to follow our coding style.
This commit is contained in:
Lioncash
2018-05-27 18:24:43 -04:00
parent 1f75fa0aff
commit 470b09fe9d
7 changed files with 18 additions and 18 deletions

View File

@ -10,8 +10,8 @@
namespace Common
{
// Returns a pointer to an array of strings with the device names
std::vector<std::string> cdio_get_devices();
std::vector<std::string> GetCDDevices();
// Returns true if device is cdrom/dvd
bool cdio_is_cdrom(std::string device);
bool IsCDROMDevice(std::string device);
} // namespace Common