diff options
| author | MerryMage <MerryMage@users.noreply.github.com> | 2016-04-28 14:28:59 +0100 |
|---|---|---|
| committer | MerryMage <MerryMage@users.noreply.github.com> | 2016-04-30 07:39:48 +0100 |
| commit | 8b94422e3e51d29171c7e8cc02bec1fbec9b29ea (patch) | |
| tree | 2a81a3f8172611c8b9d01ec0ca7bf56f78ac126f /src/audio_core/sink_details.cpp | |
| parent | 7d106eff1054204587d8c4f5537102640d1c7806 (diff) | |
AudioCore: List of sink types
Diffstat (limited to 'src/audio_core/sink_details.cpp')
| -rw-r--r-- | src/audio_core/sink_details.cpp | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/audio_core/sink_details.cpp b/src/audio_core/sink_details.cpp new file mode 100644 index 000000000..20412daaf --- /dev/null +++ b/src/audio_core/sink_details.cpp @@ -0,0 +1,17 @@ +// 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 |
