diff options
| author | nakeee <nakeee@gmail.com> | 2008-09-16 08:16:20 +0000 |
|---|---|---|
| committer | nakeee <nakeee@gmail.com> | 2008-09-16 08:16:20 +0000 |
| commit | cdff58ce403ce23274e7bd4f2e54dc909b5168e1 (patch) | |
| tree | 51d2d1141f78ae72f817d436f3815701ae6d7565 | |
| parent | ba90c68742d8d04a26e46865b1d61aa8fcede657 (diff) | |
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
| -rw-r--r-- | Source/Plugins/Plugin_DSP_HLE/Src/main.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
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;
|
