mirror of
https://github.com/athros/NESticle.git
synced 2025-04-02 10:52:50 -04:00
17 lines
258 B
Text
Executable file
17 lines
258 B
Text
Executable file
#ifndef _SOUND_
|
|
#define _SOUND_
|
|
|
|
//sound sampling rate
|
|
extern int SOUNDRATE;
|
|
|
|
|
|
//standard sound structure, 8-bit signed
|
|
struct SOUND
|
|
{
|
|
unsigned long soundsize;
|
|
signed char soundptr[];
|
|
};
|
|
|
|
struct SOUND *ReadWavFile(char *name);
|
|
#endif
|
|
|