USBUtils.h 356 B

1234567891011121314151617
  1. // Copyright 2017 Dolphin Emulator Project
  2. // SPDX-License-Identifier: GPL-2.0-or-later
  3. #pragma once
  4. #include <map>
  5. #include <string>
  6. #include <utility>
  7. #include "Common/CommonTypes.h"
  8. namespace USBUtils
  9. {
  10. std::map<std::pair<u16, u16>, std::string> GetInsertedDevices();
  11. std::string GetDeviceName(std::pair<u16, u16> vid_pid);
  12. } // namespace USBUtils