ppsspp/Windows/Debugger/Debugger_VFPUDlg.h
2021-11-13 22:24:30 +01:00

22 lines
433 B
C++

#pragma once
#include "Windows/W32Util/DialogManager.h"
#include "Core/MemMap.h"
#include "Core/Debugger/DebugInterface.h"
class CVFPUDlg : public Dialog {
public:
CVFPUDlg(HINSTANCE _hInstance, HWND _hParent, DebugInterface *cpu_);
~CVFPUDlg();
void Goto(u32 addr);
void Update();
void Size();
private:
int index;
DebugInterface *cpu;
HFONT font;
int mode;
BOOL DlgProc(UINT message, WPARAM wParam, LPARAM lParam);
};