mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-12 19:19:03 +00:00
Add CubebUtils namespace and hook up cubeb logging
This commit is contained in:
parent
34ad1eb547
commit
d416cbd9ed
11 changed files with 116 additions and 24 deletions
14
Source/Core/AudioCommon/CubebUtils.h
Normal file
14
Source/Core/AudioCommon/CubebUtils.h
Normal file
|
@ -0,0 +1,14 @@
|
|||
// Copyright 2017 Dolphin Emulator Project
|
||||
// Licensed under GPLv2+
|
||||
// Refer to the license.txt file included.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <memory>
|
||||
|
||||
struct cubeb;
|
||||
|
||||
namespace CubebUtils
|
||||
{
|
||||
std::shared_ptr<cubeb> GetContext();
|
||||
} // namespace CubebUtils
|
Loading…
Add table
Add a link
Reference in a new issue