mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-28 13:47:57 +03:00
alias OnMachineStateChange type
This commit is contained in:
parent
c0421f4db6
commit
7a9895927a
3 changed files with 4 additions and 3 deletions
|
@ -16,7 +16,8 @@ public:
|
|||
virtual void Pause() = 0;
|
||||
virtual void Resume() = 0;
|
||||
|
||||
Framework::CSignal<void()> OnMachineStateChange;
|
||||
using MachineStateChangeEvent = Framework::CSignal<void()>;
|
||||
MachineStateChangeEvent OnMachineStateChange;
|
||||
using RunningStateChangeEvent = Framework::CSignal<void()>;
|
||||
RunningStateChangeEvent OnRunningStateChange;
|
||||
};
|
||||
|
|
|
@ -42,6 +42,6 @@ private:
|
|||
|
||||
uint32 m_vuMemPacketAddress;
|
||||
|
||||
Framework::CSignal<void()>::Connection m_OnMachineStateChangeConnection;
|
||||
CVirtualMachine::MachineStateChangeEvent::Connection m_OnMachineStateChangeConnection;
|
||||
CVirtualMachine::RunningStateChangeEvent::Connection m_OnRunningStateChangeConnection;
|
||||
};
|
||||
|
|
|
@ -133,7 +133,7 @@ private:
|
|||
CAddressListViewWnd::AddressSelectedEvent::Connection m_AddressSelectedConnection;
|
||||
Framework::CSignal<void()>::Connection m_OnExecutableChangeConnection;
|
||||
Framework::CSignal<void()>::Connection m_OnExecutableUnloadingConnection;
|
||||
Framework::CSignal<void()>::Connection m_OnMachineStateChangeConnection;
|
||||
CVirtualMachine::MachineStateChangeEvent::Connection m_OnMachineStateChangeConnection;
|
||||
CVirtualMachine::RunningStateChangeEvent::Connection m_OnRunningStateChangeConnection;
|
||||
|
||||
CDisAsmWnd::FindCallersRequestedEvent::Connection m_findCallersRequestConnection;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue