2012-11-01 15:19:01 +00: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 22:01:49 +00:00
|
|
|
// the Free Software Foundation, version 2.0 or later versions.
|
2012-11-01 15:19:01 +00: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
|
|
|
|
|
2021-03-03 04:42:55 +00:00
|
|
|
#include "ppsspp_config.h"
|
2021-11-13 21:24:30 +00:00
|
|
|
|
2012-11-01 15:19:01 +00:00
|
|
|
#include "Debugger/Debugger_Disasm.h"
|
|
|
|
#include "Debugger/Debugger_MemoryDlg.h"
|
2021-11-13 21:24:30 +00:00
|
|
|
#include "Debugger/Debugger_VFPUDlg.h"
|
|
|
|
|
2013-07-29 04:01:49 +00:00
|
|
|
#include "Common/CommonWindows.h"
|
2012-11-17 22:44:29 +00:00
|
|
|
|
2020-09-23 22:17:31 +00:00
|
|
|
extern CDisasm *disasmWindow;
|
|
|
|
extern CMemoryDlg *memoryWindow;
|
2021-11-13 21:24:30 +00:00
|
|
|
extern CVFPUDlg *vfpudlg;
|
2012-11-01 15:19:01 +00:00
|
|
|
|
2019-05-10 21:25:57 +00:00
|
|
|
#if PPSSPP_API(ANY_GL)
|
2019-05-03 22:06:50 +00:00
|
|
|
#include "Windows/GEDebugger/GEDebugger.h"
|
|
|
|
extern CGEDebugger* geDebuggerWindow;
|
|
|
|
#endif
|
|
|
|
|
2013-09-28 12:34:08 +00:00
|
|
|
extern int g_activeWindow;
|
|
|
|
|
2024-04-05 20:41:08 +00:00
|
|
|
enum { WINDOW_MAINWINDOW, WINDOW_CPUDEBUGGER, WINDOW_GEDEBUGGER, WINDOW_OTHER };
|