diff options
Diffstat (limited to 'Source/Core/DolphinWX/Debugger/DSPDebugWindow.cpp')
| -rw-r--r-- | Source/Core/DolphinWX/Debugger/DSPDebugWindow.cpp | 24 |
1 files changed, 21 insertions, 3 deletions
diff --git a/Source/Core/DolphinWX/Debugger/DSPDebugWindow.cpp b/Source/Core/DolphinWX/Debugger/DSPDebugWindow.cpp index 681209c39c..b755af5993 100644 --- a/Source/Core/DolphinWX/Debugger/DSPDebugWindow.cpp +++ b/Source/Core/DolphinWX/Debugger/DSPDebugWindow.cpp @@ -2,13 +2,29 @@ // Licensed under GPLv2 // Refer to the license.txt file included. -#include <fstream> -#include <iostream> -#include <sstream> +#include <cstdio> #include <wx/artprov.h> +#include <wx/chartype.h> +#include <wx/defs.h> +#include <wx/event.h> +#include <wx/gdicmn.h> +#include <wx/listbox.h> +#include <wx/panel.h> +#include <wx/sizer.h> +#include <wx/string.h> +#include <wx/textctrl.h> +#include <wx/thread.h> +#include <wx/translation.h> +#include <wx/windowid.h> +#include <wx/aui/auibar.h> +#include <wx/aui/auibook.h> +#include <wx/aui/framemanager.h> #include "Common/Common.h" #include "Common/StringUtil.h" +#include "Common/SymbolDB.h" +#include "Core/DSP/DSPCore.h" +#include "Core/HW/DSPLLE/DSPDebugInterface.h" #include "Core/HW/DSPLLE/DSPSymbols.h" #include "DolphinWX/WxUtils.h" #include "DolphinWX/Debugger/CodeView.h" @@ -16,6 +32,8 @@ #include "DolphinWX/Debugger/DSPRegisterView.h" #include "DolphinWX/Debugger/MemoryView.h" +class wxWindow; + DSPDebuggerLLE* m_DebuggerFrame = NULL; BEGIN_EVENT_TABLE(DSPDebuggerLLE, wxPanel) |
