Introduction
Statistics
Contact
Development
Disclaimer
Help
bitreich.org home page
#include <windows.h>
#include "sound.h"
char *sound[NUM_SOUNDS];
void play_sound(char *name)
{
if (! strlen(name))
return;
PlaySound(name, NULL, SND_FILENAME | SND_ASYNC);
}