Remove unnecessary Src/ folders

This commit is contained in:
Jasper St. Pierre
2013-12-07 15:14:29 -05:00
parent 43e618682e
commit 34692ab826
1026 changed files with 37648 additions and 37646 deletions

View File

@ -0,0 +1,13 @@
#ifndef _CDUTILS_H_
#define _CDUTILS_H_
#include <vector>
#include <string>
// Returns a pointer to an array of strings with the device names
std::vector<std::string> cdio_get_devices();
// Returns true if device is cdrom/dvd
bool cdio_is_cdrom(std::string device);
#endif // _CDUTILS_H_