Add CubebUtils namespace and hook up cubeb logging

This commit is contained in:
Michael Maltese
2017-04-23 23:55:37 -07:00
parent 34ad1eb547
commit d416cbd9ed
11 changed files with 116 additions and 24 deletions

View 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