2012-11-01 16:19:01 +01:00
|
|
|
// Copyright (c) 2012- PPSSPP Project.
|
|
|
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
2012-11-04 23:01:49 +01:00
|
|
|
// the Free Software Foundation, version 2.0 or later versions.
|
2012-11-01 16:19:01 +01:00
|
|
|
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License 2.0 for more details.
|
|
|
|
|
|
|
|
// A copy of the GPL 2.0 should have been included with the program.
|
|
|
|
// If not, see http://www.gnu.org/licenses/
|
|
|
|
|
|
|
|
// Official git repository and contact information can be found at
|
|
|
|
// https://github.com/hrydgard/ppsspp and http://www.ppsspp.org/.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2013-03-29 20:51:14 +01:00
|
|
|
#include "Globals.h"
|
2013-03-31 16:55:48 +10:00
|
|
|
#include "Core/System.h"
|
2013-03-29 20:51:14 +01:00
|
|
|
#include "Core/CoreParameter.h"
|
2012-11-01 16:19:01 +01:00
|
|
|
|
|
|
|
// called from emu thread
|
|
|
|
void Core_Run();
|
|
|
|
void Core_Stop();
|
|
|
|
void Core_ErrorPause();
|
|
|
|
// called from gui
|
|
|
|
void Core_EnableStepping(bool step);
|
|
|
|
void Core_DoSingleStep();
|
2013-09-14 18:43:23 -07:00
|
|
|
void Core_UpdateSingleStep();
|
2012-11-01 16:19:01 +01:00
|
|
|
|
2013-09-28 00:32:45 -07:00
|
|
|
typedef void (* Core_ShutdownFunc)();
|
|
|
|
void Core_ListenShutdown(Core_ShutdownFunc func);
|
|
|
|
void Core_NotifyShutdown();
|
2012-11-01 16:19:01 +01:00
|
|
|
void Core_Halt(const char *msg);
|
|
|
|
|
|
|
|
bool Core_IsStepping();
|
|
|
|
|
2013-06-08 08:32:07 +08:00
|
|
|
bool Core_IsActive();
|
2013-02-23 12:59:40 -08:00
|
|
|
bool Core_IsInactive();
|
|
|
|
void Core_WaitInactive();
|
2013-02-23 13:21:28 -08:00
|
|
|
void Core_WaitInactive(int milliseconds);
|
2013-02-23 12:59:40 -08:00
|
|
|
|
2013-03-31 16:55:48 +10:00
|
|
|
void UpdateScreenScale();
|