예제 #1
0
파일: track.c 프로젝트: blezek/warzone2100
//*
// =======================================================================================================================
// =======================================================================================================================
//
BOOL sound_Shutdown( void )
{
    // set inactive flag to prevent callbacks coming after shutdown
    g_bSystemActive = false;
    sound_ShutdownLibrary();
    return true;
}
예제 #2
0
void soundTest()
{
	int i;

	for (i = 0; i < 25; i++)
	{
		assert(sound_InitLibrary());
		sound_ShutdownLibrary();
	}
	fprintf(stdout, "\tSound self-test: PASSED\n");
}