CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
hrydgard

CoCalc provides the best real-time collaborative environment for Jupyter Notebooks, LaTeX documents, and SageMath, scalable from individual users to large groups and classes!

GitHub Repository: hrydgard/ppsspp
Path: blob/master/Windows/Debugger/DebuggerShared.h
Views: 1401
1
#pragma once
2
#include "Common/CommonWindows.h"
3
#include "Core/Debugger/DebugInterface.h"
4
5
enum { WM_DEB_GOTOWPARAM = WM_USER+2,
6
WM_DEB_GOTOADDRESSEDIT,
7
WM_DEB_MAPLOADED,
8
WM_DEB_TABPRESSED,
9
WM_DEB_SETDEBUGLPARAM,
10
WM_DEB_UPDATE,
11
WM_DEB_SETSTATUSBARTEXT,
12
WM_DEB_GOTOHEXEDIT
13
};
14
15
bool executeExpressionWindow(HWND hwnd, DebugInterface* cpu, u32& dest);
16
void displayExpressionError(HWND hwnd);
17
bool parseExpression(const char* exp, DebugInterface* cpu, u32& dest);
18
19