project64/Source/Project64/UserInterface/Debugger/Debugger-TLB.h

29 lines
670 B
C
Raw Normal View History

2016-01-27 09:11:59 +00:00
#pragma once
class CDebugTlb :
2022-09-26 02:31:54 +00:00
public CDebugDialog<CDebugTlb>
2016-01-27 09:11:59 +00:00
{
BEGIN_MSG_MAP_EX(CDebugTlb)
2022-09-26 02:31:54 +00:00
{
MESSAGE_HANDLER(WM_INITDIALOG, OnInitDialog);
COMMAND_CODE_HANDLER(BN_CLICKED, OnClicked);
MSG_WM_EXITSIZEMOVE(OnExitSizeMove);
}
2019-12-25 00:41:20 +00:00
END_MSG_MAP()
2016-01-27 09:11:59 +00:00
2022-09-26 02:31:54 +00:00
LRESULT OnInitDialog(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lParam*/, BOOL & /*bHandled*/);
LRESULT OnClicked(WORD wNotifyCode, WORD wID, HWND /*hWndCtl*/, BOOL & bHandled);
2019-12-25 00:41:20 +00:00
void OnExitSizeMove(void);
2016-01-27 09:11:59 +00:00
public:
2022-09-26 02:31:54 +00:00
enum
{
IDD = IDD_Debugger_TLB
};
2016-01-27 09:11:59 +00:00
CDebugTlb(CDebuggerUI * debugger);
virtual ~CDebugTlb(void);
void RefreshTLBWindow(void);
};