mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-24 05:49:58 +00:00
19 lines
494 B
C
19 lines
494 B
C
#pragma once
|
|
#include "Common/CommonWindows.h"
|
|
#include "Core/Debugger/DebugInterface.h"
|
|
|
|
extern HMENU g_hPopupMenus;
|
|
|
|
enum { WM_DEB_GOTOWPARAM = WM_USER+2,
|
|
WM_DEB_GOTOADDRESSEDIT,
|
|
WM_DEB_MAPLOADED,
|
|
WM_DEB_TABPRESSED,
|
|
WM_DEB_SETDEBUGLPARAM,
|
|
WM_DEB_UPDATE,
|
|
WM_DEB_SETSTATUSBARTEXT,
|
|
WM_DEB_GOTOHEXEDIT
|
|
};
|
|
|
|
bool executeExpressionWindow(HWND hwnd, DebugInterface* cpu, u32& dest);
|
|
void displayExpressionError(HWND hwnd);
|
|
bool parseExpression(const char* exp, DebugInterface* cpu, u32& dest); |