mirror of
https://github.com/libretro/Mesen.git
synced 2024-11-24 01:29:41 +00:00
48409ae82b
-Several other fixes (bugfixes, refactoring, etc.) -Added a few more features to debugger
10 lines
169 B
C++
10 lines
169 B
C++
#pragma once
|
|
|
|
#include "stdafx.h"
|
|
|
|
class IAudioDevice
|
|
{
|
|
public:
|
|
virtual void PlayBuffer(int16_t *soundBuffer, uint32_t bufferSize) = 0;
|
|
virtual void Pause() = 0;
|
|
}; |