// Copyright 2017 Dolphin Emulator Project // SPDX-License-Identifier: GPL-2.0-or-later #pragma once #include #include struct cubeb; namespace CubebUtils { void RunInCubebContext(const std::function& func); std::shared_ptr GetContext(); } // namespace CubebUtils