2015-05-23 22:32:32 -06:00
|
|
|
// Copyright 2009 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2+
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2014-02-10 11:54:46 -07:00
|
|
|
#pragma once
|
2009-03-28 02:57:34 -06:00
|
|
|
|
2010-02-16 01:46:21 -07:00
|
|
|
#include <string>
|
2014-02-17 03:18:15 -07:00
|
|
|
#include <vector>
|
2009-02-24 08:06:52 -07:00
|
|
|
|
2009-03-28 02:57:34 -06:00
|
|
|
// Returns a pointer to an array of strings with the device names
|
2010-02-16 01:46:21 -07:00
|
|
|
std::vector<std::string> cdio_get_devices();
|
2009-02-24 08:06:52 -07:00
|
|
|
|
2009-03-28 02:57:34 -06:00
|
|
|
// Returns true if device is cdrom/dvd
|
2010-02-16 01:46:21 -07:00
|
|
|
bool cdio_is_cdrom(std::string device);
|