ppsspp/Windows/Debugger/DebuggerShared.h

20 lines
509 B
C
Raw Normal View History

#pragma once
#include "Common/CommonWindows.h"
#include "Core/Debugger/DebugInterface.h"
extern HMENU g_hPopupMenus;
enum { WM_DEB_RUNTOWPARAM = WM_USER+2,
2013-07-02 21:21:20 +00:00
WM_DEB_GOTOWPARAM,
WM_DEB_GOTOADDRESSEDIT,
WM_DEB_MAPLOADED,
WM_DEB_TABPRESSED,
WM_DEB_SETDEBUGLPARAM,
WM_DEB_UPDATE,
2013-07-30 14:19:05 +00:00
WM_DEB_SETSTATUSBARTEXT,
WM_DEB_GOTOHEXEDIT
};
bool executeExpressionWindow(HWND hwnd, DebugInterface* cpu, u32& dest);
void displayExpressionError(HWND hwnd);
bool parseExpression(char* exp, DebugInterface* cpu, u32& dest);