mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
15 lines
No EOL
416 B
C
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); |