CDUtils.h 354 B

123456789101112131415
  1. // Copyright 2009 Dolphin Emulator Project
  2. // Licensed under GPLv2+
  3. // Refer to the license.txt file included.
  4. #pragma once
  5. #include <string>
  6. #include <vector>
  7. // Returns a pointer to an array of strings with the device names
  8. std::vector<std::string> cdio_get_devices();
  9. // Returns true if device is cdrom/dvd
  10. bool cdio_is_cdrom(std::string device);