예제 #1
0
파일: main.c 프로젝트: devilx4/quake2world
/*
 * @brief Shuts down the master server.
 */
static void Shutdown(const char *msg) {

	Com_Print("%s", msg);

	g_list_free_full(ms_servers, Z_Free);

	Fs_Shutdown();

	Z_Shutdown();
}
예제 #2
0
/*
 * @brief Teardown fixture.
 */
void teardown(void) {
	Z_Shutdown();
}
예제 #3
0
void Libdeng_Shutdown(void)
{
    Z_Shutdown();
    Timer_Shutdown();
}
예제 #4
0
/*
 * @brief Teardown fixture.
 */
void teardown(void) {

	R_ShutdownMedia();

	Z_Shutdown();
}
예제 #5
0
파일: test.c 프로젝트: darkshade9/aq2w
/*
 * Test_Shutdown
 *
 * Releases any testing resources.
 */
void Test_Shutdown() {

	Z_Shutdown();
}
예제 #6
0
/*
 * @brief Teardown fixture.
 */
void teardown(void) {

	Fs_Shutdown();

	Z_Shutdown();
}