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