mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 21:39:52 +00:00
97098f109a
Might as well. Everything still builds fine.
20 lines
438 B
C++
20 lines
438 B
C++
#ifndef __SOUNDSTREAM_H__
|
|
#define __SOUNDSTREAM_H__
|
|
|
|
#include "Common/CommonWindows.h"
|
|
|
|
namespace DSound
|
|
{
|
|
typedef int (*StreamCallback)(short *buffer, int numSamples, int bits, int rate, int channels);
|
|
|
|
bool DSound_StartSound(HWND window, StreamCallback _callback);
|
|
void DSound_UpdateSound();
|
|
void DSound_StopSound();
|
|
|
|
float DSound_GetTimer();
|
|
int DSound_GetCurSample();
|
|
int DSound_GetSampleRate();
|
|
}
|
|
|
|
|
|
#endif //__SOUNDSTREAM_H__
|