Beispiel #1
0
//*
// =======================================================================================================================
// =======================================================================================================================
//
BOOL sound_Shutdown( void )
{
    // set inactive flag to prevent callbacks coming after shutdown
    g_bSystemActive = false;
    sound_ShutdownLibrary();
    return true;
}
void soundTest()
{
	int i;

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