~ppsspp/ppsspp/ppsspp-1.2.2

« back to all changes in this revision

Viewing changes to Core/Core.h

  • Committer: Sérgio Benjamim
  • Date: 2016-04-25 02:30:18 UTC
  • Revision ID: sergio_br2@yahoo.com.br-20160425023018-wk3rd7nu30fejjzz
1.2.2 source.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// Copyright (c) 2012- PPSSPP Project.
 
2
 
 
3
// This program is free software: you can redistribute it and/or modify
 
4
// it under the terms of the GNU General Public License as published by
 
5
// the Free Software Foundation, version 2.0 or later versions.
 
6
 
 
7
// This program is distributed in the hope that it will be useful,
 
8
// but WITHOUT ANY WARRANTY; without even the implied warranty of
 
9
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
10
// GNU General Public License 2.0 for more details.
 
11
 
 
12
// A copy of the GPL 2.0 should have been included with the program.
 
13
// If not, see http://www.gnu.org/licenses/
 
14
 
 
15
// Official git repository and contact information can be found at
 
16
// https://github.com/hrydgard/ppsspp and http://www.ppsspp.org/.
 
17
 
 
18
#pragma once
 
19
 
 
20
#include "Core/System.h"
 
21
#include "Core/CoreParameter.h"
 
22
 
 
23
class GraphicsContext;
 
24
 
 
25
// called from emu thread
 
26
void UpdateRunLoop();
 
27
void Core_Run(GraphicsContext *ctx);
 
28
void Core_Stop();
 
29
void Core_ErrorPause();
 
30
// For platforms that don't call Core_Run
 
31
void Core_SetGraphicsContext(GraphicsContext *ctx);
 
32
// called from gui
 
33
void Core_EnableStepping(bool step);
 
34
void Core_DoSingleStep();
 
35
void Core_UpdateSingleStep();
 
36
 
 
37
typedef void (* Core_ShutdownFunc)();
 
38
void Core_ListenShutdown(Core_ShutdownFunc func);
 
39
void Core_NotifyShutdown();
 
40
void Core_Halt(const char *msg);
 
41
 
 
42
bool Core_IsStepping();
 
43
 
 
44
bool Core_IsActive();
 
45
bool Core_IsInactive();
 
46
void Core_WaitInactive();
 
47
void Core_WaitInactive(int milliseconds);
 
48
 
 
49
bool UpdateScreenScale(int width, int height, bool smallWindow);
 
50
 
 
51
// Don't run the core when minimized etc.
 
52
void Core_NotifyWindowHidden(bool hidden);
 
53
void Core_NotifyActivity();