2017-04-23 23:55:37 -07:00
|
|
|
// Copyright 2017 Dolphin Emulator Project
|
2021-07-05 03:22:19 +02:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2017-04-23 23:55:37 -07:00
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
2022-06-18 00:39:41 +02:00
|
|
|
#include <functional>
|
2017-04-23 23:55:37 -07:00
|
|
|
#include <memory>
|
|
|
|
|
|
|
|
|
|
struct cubeb;
|
|
|
|
|
|
|
|
|
|
namespace CubebUtils
|
|
|
|
|
{
|
|
|
|
|
std::shared_ptr<cubeb> GetContext();
|
|
|
|
|
} // namespace CubebUtils
|