mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-19 12:19:40 -06:00
Improved some error msgs, added preliminary memory view window, split plugin ini files.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@42 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -30,6 +30,8 @@
|
||||
class CRegisterWindow;
|
||||
class CLogWindow;
|
||||
class CBreakPointWindow;
|
||||
class CMemoryWindow;
|
||||
class CCodeView;
|
||||
|
||||
class CCodeWindow
|
||||
: public wxFrame
|
||||
@ -58,6 +60,7 @@ class CCodeWindow
|
||||
CLogWindow* m_logwindow;
|
||||
CRegisterWindow* m_RegisterWindow;
|
||||
CBreakPointWindow* m_BreakpointWindow;
|
||||
CMemoryWindow* m_MemoryWindow;
|
||||
|
||||
CCodeView* codeview;
|
||||
wxListBox* callstack;
|
||||
@ -81,6 +84,7 @@ class CCodeWindow
|
||||
void OnToggleRegisterWindow(wxCommandEvent& event);
|
||||
void OnToggleBreakPointWindow(wxCommandEvent& event);
|
||||
void OnToggleLogWindow(wxCommandEvent& event);
|
||||
void OnToggleMemoryWindow(wxCommandEvent& event);
|
||||
void OnHostMessage(wxCommandEvent& event);
|
||||
|
||||
void CreateMenu(const SCoreStartupParameter& _LocalCoreStartupParameter);
|
||||
|
Reference in New Issue
Block a user