room101/DOS/SOUND.C

16 lines
170 B
C++
Raw Permalink Normal View History

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