Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
hrydgard
GitHub Repository: hrydgard/ppsspp
Path: blob/master/Windows/Debugger/Debugger_VFPUDlg.h
3186 views
1
#pragma once
2
3
#include "Windows/W32Util/DialogManager.h"
4
#include "Core/MemMap.h"
5
#include "Core/Debugger/DebugInterface.h"
6
7
class CVFPUDlg : public Dialog {
8
public:
9
CVFPUDlg(HINSTANCE _hInstance, HWND _hParent, DebugInterface *cpu_);
10
~CVFPUDlg();
11
12
void Goto(u32 addr);
13
void Update() override;
14
void Size();
15
16
private:
17
DebugInterface *cpu;
18
HFONT font;
19
int mode;
20
BOOL DlgProc(UINT message, WPARAM wParam, LPARAM lParam) override;
21
};
22
23