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