2016-11-11 00:33:52 +00:00
|
|
|
// Copyright 2017 Dolphin Emulator Project
|
2021-07-05 01:22:19 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2016-11-11 00:33:52 +00:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <map>
|
|
|
|
#include <string>
|
|
|
|
#include <utility>
|
|
|
|
|
|
|
|
#include "Common/CommonTypes.h"
|
|
|
|
|
|
|
|
namespace USBUtils
|
|
|
|
{
|
|
|
|
std::map<std::pair<u16, u16>, std::string> GetInsertedDevices();
|
|
|
|
std::string GetDeviceName(std::pair<u16, u16> vid_pid);
|
|
|
|
} // namespace USBUtils
|