mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-17 14:16:10 -06:00
15 lines
249 B
C
15 lines
249 B
C
#ifndef _plugin_wav_wav_h_
|
|
#define _plugin_wav_wav_h_
|
|
|
|
#include "wave.h"
|
|
#include <Sound/Sound.h>
|
|
|
|
NAMESPACE_UPP
|
|
|
|
SampleFormat WavBitsToSampleFormat(int bits);
|
|
bool IsWavFile(const char* fn);
|
|
bool PlayWav(const char* fn);
|
|
|
|
END_UPP_NAMESPACE
|
|
|
|
#endif
|