Files
ppsspp/Windows/Debugger/Debugger_VFPUDlg.h

23 lines
451 B
C
Raw Permalink Normal View History

2012-11-01 16:19:01 +01:00
#pragma once
2013-12-29 15:55:09 -08:00
#include "Windows/W32Util/DialogManager.h"
#include "Core/MemMap.h"
#include "Core/Debugger/DebugInterface.h"
2012-11-01 16:19:01 +01:00
class CVFPUDlg : public Dialog {
public:
CVFPUDlg(HINSTANCE _hInstance, HWND _hParent, DebugInterface *cpu_);
~CVFPUDlg();
void Goto(u32 addr);
void Update() override;
void Size();
2012-11-01 16:19:01 +01:00
private:
int index;
2012-11-01 16:19:01 +01:00
DebugInterface *cpu;
HFONT font;
int mode;
BOOL DlgProc(UINT message, WPARAM wParam, LPARAM lParam) override;
2012-11-01 16:19:01 +01:00
};