mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-02 16:35:06 +01:00
33 lines
942 B
C++
33 lines
942 B
C++
// Copyright 2016 Citra Emulator Project
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include <functional>
|
|
#include <memory>
|
|
#include <vector>
|
|
|
|
namespace AudioCore {
|
|
|
|
class Sink;
|
|
|
|
struct SinkDetails {
|
|
SinkDetails(const char* id_, std::function<std::unique_ptr<Sink>(std::string)> factory_,
|
|
std::function<std::vector<std::string>()> list_devices_)
|
|
: id(id_), factory(factory_), list_devices(list_devices_) {}
|
|
|
|
/// Name for this sink.
|
|
const char* id;
|
|
/// A method to call to construct an instance of this type of sink.
|
|
std::function<std::unique_ptr<Sink>(std::string device_id)> factory;
|
|
/// A method to call to list available devices.
|
|
std::function<std::vector<std::string>()> list_devices;
|
|
};
|
|
|
|
extern const std::vector<SinkDetails> g_sink_details;
|
|
|
|
const SinkDetails& GetSinkDetails(std::string sink_id);
|
|
|
|
} // namespace AudioCore
|