mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-05 01:45:05 +01:00
18 lines
404 B
C++
18 lines
404 B
C++
|
// Copyright 2016 Citra Emulator Project
|
||
|
// Licensed under GPLv2 or any later version
|
||
|
// Refer to the license.txt file included.
|
||
|
|
||
|
#include <memory>
|
||
|
#include <vector>
|
||
|
|
||
|
#include "audio_core/null_sink.h"
|
||
|
#include "audio_core/sink_details.h"
|
||
|
|
||
|
namespace AudioCore {
|
||
|
|
||
|
const std::vector<SinkDetails> g_sink_details = {
|
||
|
{ "null", []() { return std::make_unique<NullSink>(); } },
|
||
|
};
|
||
|
|
||
|
} // namespace AudioCore
|