Ejemplo n.º 1
0
static void logfile_callback(running_machine *machine, const char *buffer)
{
	if (options.logfile)
		mame_fputs(options.logfile, buffer);
}
Ejemplo n.º 2
0
void running_machine::logfile_callback(running_machine &machine, const char *buffer)
{
	if (machine.m_logfile != NULL)
		mame_fputs(machine.m_logfile, buffer);
}
Ejemplo n.º 3
0
static void logfile_callback(const char *buffer)
{
	if (options.logfile)
		mame_fputs(options.logfile, buffer);
}