ppsspp/Windows/Debugger/DebuggerShared.h

15 lines
No EOL
416 B
C

#pragma once
#include <Windows.h>
#include "..\..\Core\Debugger\DebugInterface.h"
enum { WM_DEB_RUNTOWPARAM = WM_USER+2,
WM_DEB_GOTOBREAKPOINT,
WM_DEB_REMOVEBREAKPOINT,
WM_DEB_GOTOADDRESSEDIT,
WM_DEB_MAPLOADED,
WM_DEB_TABPRESSED
};
bool executeExpressionWindow(HWND hwnd, DebugInterface* cpu, u32& dest);
void displayExpressionError(HWND hwnd);
bool parseExpression(char* exp, DebugInterface* cpu, u32& dest);