Esempio n. 1
0
static pascal OSErr AEquit (const AppleEvent *theEvent, AppleEvent *theReply, long refCon)
{
	if (running)
		return (noErr);

	SNES9X_Quit();
	QuitApplicationEventLoop();

	return (noErr);
}
Esempio n. 2
0
static pascal OSErr AEquit(const AppleEvent *theEvent, AppleEvent *theReply, long refCon)
{	
	#pragma unused (theEvent, theReply, refCon)
	
	if (running)
		return noErr;

	SNES9X_Quit();
	QuitApplicationEventLoop();
	
	return noErr;
}