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/Debugger_VFPUDlg.h
Views: 1401
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