room101/DOS/SOUND.C

15 lines
170 B
C

Sound*
SoundCreate(char* filename)
{
Sound* sound = NEW(Sound);
assert(sound);
return sound;
}
void
SoundPlay(Sound* sound, int flags)
{
}