mirror of
https://github.com/libretro/Play-.git
synced 2025-02-23 13:10:32 +00:00
28 lines
581 B
C++
28 lines
581 B
C++
#ifndef _REGVIEWVU_H_
|
|
#define _REGVIEWVU_H_
|
|
|
|
#include "RegViewPage.h"
|
|
#include "EventHandler.h"
|
|
#include "../MIPS.h"
|
|
|
|
class CRegViewVU : public CRegViewPage
|
|
{
|
|
public:
|
|
CRegViewVU(HWND, RECT*, CMIPS*);
|
|
~CRegViewVU();
|
|
|
|
private:
|
|
void Update();
|
|
void GetDisplayText(Framework::CStrA*);
|
|
|
|
void OnMachineStateChange(int);
|
|
void OnRunningStateChange(int);
|
|
|
|
CMIPS* m_pCtx;
|
|
|
|
Framework::CEventHandler<int>* m_pOnMachineStateChangeHandler;
|
|
Framework::CEventHandler<int>* m_pOnRunningStateChangeHandler;
|
|
};
|
|
|
|
#endif
|