NESticle/Source/BACK/SOUND.BAK
2019-04-25 18:26:42 +07:00

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