2009-03-28 08:57:34 +00:00
|
|
|
#ifndef _CDUTILS_H_
|
|
|
|
#define _CDUTILS_H_
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
2010-02-16 08:46:21 +00:00
|
|
|
#include <vector>
|
|
|
|
#include <string>
|
2009-03-28 08:57:34 +00:00
|
|
|
#include <stdio.h>
|
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
|
2010-02-16 08:46:21 +00:00
|
|
|
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
|
2010-02-16 08:46:21 +00:00
|
|
|
bool cdio_is_cdrom(std::string device);
|
2009-02-24 15:06:52 +00:00
|
|
|
|
2009-03-28 08:57:34 +00:00
|
|
|
#endif // _CDUTILS_H_
|