From cdff58ce403ce23274e7bd4f2e54dc909b5168e1 Mon Sep 17 00:00:00 2001 From: nakeee Date: Tue, 16 Sep 2008 08:16:20 +0000 Subject: [PATCH] copied the DllDebugger function from the LLE code to solve missing symbols on linux. Please check on windows to make sure it works. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@533 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Plugins/Plugin_DSP_HLE/Src/main.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Source/Plugins/Plugin_DSP_HLE/Src/main.cpp b/Source/Plugins/Plugin_DSP_HLE/Src/main.cpp index 7eb75a39cb..bddbf129b3 100644 --- a/Source/Plugins/Plugin_DSP_HLE/Src/main.cpp +++ b/Source/Plugins/Plugin_DSP_HLE/Src/main.cpp @@ -84,6 +84,15 @@ BOOL APIENTRY DllMain(HINSTANCE hinstDLL, // DLL module handle #endif +void DllDebugger(HWND _hParent) +{ +#if defined (_DEBUG) && defined (_WIN32) + g_Dialog.Create(NULL); //_hParent); + g_Dialog.ShowWindow(SW_SHOW); +#endif + +} + void GetDllInfo(PLUGIN_INFO* _PluginInfo) { _PluginInfo->Version = 0x0100;