blob: f0effc2e8f4933d7a1c70af561b0f03cdbe577a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// Copyright 2017 Dolphin Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
#pragma once
#include <functional>
#include <memory>
struct cubeb;
namespace CubebUtils
{
std::shared_ptr<cubeb> GetContext();
} // namespace CubebUtils
|