Exemplo n.º 1
0
Arquivo: USB.cpp Projeto: tsiru/pcsx2
EXPORT_C_(void) USBshutdown()
{
	// Yes, we close things in the Shutdown routine, and
	// don't do anything in the close routine.
	USBLog.Close();
	
	free(usbregs);
	usbregs = NULL;
}
Exemplo n.º 2
0
Arquivo: USB.cpp Projeto: tsiru/pcsx2
EXPORT_C_(void)  USBsetLogDir(const char* dir)
{
	// Get the path to the log directory.
	s_strLogPath = (dir==NULL) ? "logs" : dir;
	
	// Reload the log file after updated the path
	USBLog.Close();
	LogInit();
}
Exemplo n.º 3
0
EXPORT_C_(void) DEV9shutdown()
{
	Dev9Log.WriteLn("Shutting down Dev9null.");
	Dev9Log.Close();
}