diff --git a/Source/Core/Core/Src/Plugins/Plugin_DSP.h b/Source/Core/Core/Src/Plugins/Plugin_DSP.h index 27fea7cc8b..ae6509eddb 100644 --- a/Source/Core/Core/Src/Plugins/Plugin_DSP.h +++ b/Source/Core/Core/Src/Plugins/Plugin_DSP.h @@ -28,7 +28,6 @@ void UnloadPlugin(); // Function Types typedef void (__cdecl* TGetDllInfo)(PLUGIN_INFO*); -//typedef void (__cdecl* TDllAbout)(HWND); typedef void (__cdecl* TDllConfig)(HWND); typedef void (__cdecl* TDllDebugger)(HWND, bool); typedef void (__cdecl* TDSP_Initialize)(DSPInitialize); diff --git a/Source/Core/Core/Src/Plugins/Plugin_DVD.cpp b/Source/Core/Core/Src/Plugins/Plugin_DVD.cpp index c8fec8789b..29e4c315c1 100644 --- a/Source/Core/Core/Src/Plugins/Plugin_DVD.cpp +++ b/Source/Core/Core/Src/Plugins/Plugin_DVD.cpp @@ -24,7 +24,6 @@ namespace PluginDVD //! Function Types typedef void (__cdecl* TGetDllInfo) (PLUGIN_INFO*); -typedef void (__cdecl* TDllAbout) (HWND); typedef void (__cdecl* TDllConfig) (HWND); typedef void (__cdecl* TDVD_Initialize) (SDVDInitialize); typedef void (__cdecl* TDVD_Shutdown) (); @@ -36,7 +35,6 @@ typedef u32 (__cdecl* TDVD_Read32) (u64); //! Function Pointer TGetDllInfo g_GetDllInfo = NULL; -TDllAbout g_DllAbout = NULL; TDllConfig g_DllConfig = NULL; TDVD_Initialize g_DVD_Initialize = NULL; TDVD_Shutdown g_DVD_Shutdown = NULL; @@ -62,7 +60,6 @@ bool LoadPlugin(const char *_strFilename) if (g_hLibraryInstance) { g_GetDllInfo = reinterpret_cast (GetProcAddress(g_hLibraryInstance, "GetDllInfo")); - g_DllAbout = reinterpret_cast (GetProcAddress(g_hLibraryInstance, "DllAbout")); g_DllConfig = reinterpret_cast (GetProcAddress(g_hLibraryInstance, "DllConfig")); g_DVD_Initialize = reinterpret_cast (GetProcAddress(g_hLibraryInstance, "DVD_Initialize")); g_DVD_Shutdown = reinterpret_cast (GetProcAddress(g_hLibraryInstance, "DVD_Shutdown")); @@ -73,7 +70,6 @@ bool LoadPlugin(const char *_strFilename) g_DVD_IsValid = reinterpret_cast (GetProcAddress(g_hLibraryInstance, "DVD_IsValid")); if ((g_GetDllInfo != NULL) && - (g_DllAbout != NULL) && (g_DllConfig != NULL) && (g_DVD_Initialize != NULL) && (g_DVD_Shutdown != NULL) && @@ -99,7 +95,6 @@ void UnloadPlugin() { // Set Functions to NULL g_GetDllInfo = NULL; - g_DllAbout = NULL; g_DllConfig = NULL; g_DVD_Initialize = NULL; g_DVD_Shutdown = NULL; @@ -125,11 +120,6 @@ void GetDllInfo(PLUGIN_INFO* _PluginInfo) g_GetDllInfo(_PluginInfo); } -void DllAbout(HWND _hParent) -{ - g_DllAbout(_hParent); -} - void DllConfig(HWND _hParent) { g_DllConfig(_hParent); diff --git a/Source/Core/Core/Src/Plugins/Plugin_DVD.h b/Source/Core/Core/Src/Plugins/Plugin_DVD.h index e2fd00576c..921c574082 100644 --- a/Source/Core/Core/Src/Plugins/Plugin_DVD.h +++ b/Source/Core/Core/Src/Plugins/Plugin_DVD.h @@ -39,9 +39,6 @@ void UnloadPlugin(); //! GetDllInfo void GetDllInfo(PLUGIN_INFO* _PluginInfo) ; -//! DllAbout -void DllAbout(HWND _hParent); - //! DllConfig void DllConfig(HWND _hParent); diff --git a/Source/Core/Core/Src/Plugins/Plugin_PAD.cpp b/Source/Core/Core/Src/Plugins/Plugin_PAD.cpp index 3d2813953d..00d6e10efb 100644 --- a/Source/Core/Core/Src/Plugins/Plugin_PAD.cpp +++ b/Source/Core/Core/Src/Plugins/Plugin_PAD.cpp @@ -24,7 +24,6 @@ namespace PluginPAD // Function Pointers TGetDllInfo GetDllInfo = 0; TPAD_Shutdown PAD_Shutdown = 0; -//TDllAbout DllAbout = 0; TDllConfig DllConfig = 0; TPAD_Initialize PAD_Initialize = 0; TPAD_GetStatus PAD_GetStatus = 0; @@ -45,7 +44,6 @@ void UnloadPlugin() // Set Functions to 0 GetDllInfo = 0; PAD_Shutdown = 0; - //DllAbout = 0; DllConfig = 0; PAD_Initialize = 0; PAD_GetStatus = 0; diff --git a/Source/Core/Core/Src/Plugins/Plugin_Video.cpp b/Source/Core/Core/Src/Plugins/Plugin_Video.cpp index 1442a5b6e7..e943a6dff0 100644 --- a/Source/Core/Core/Src/Plugins/Plugin_Video.cpp +++ b/Source/Core/Core/Src/Plugins/Plugin_Video.cpp @@ -102,7 +102,6 @@ bool LoadPlugin(const char *_Filename) Video_DoState = reinterpret_cast (plugin.Get("Video_DoState")); Video_Stop = reinterpret_cast (plugin.Get("Video_Stop")); if ((GetDllInfo != 0) && - //(DllAbout != 0) && (DllConfig != 0) && (DllDebugger != 0) && (Video_Initialize != 0) && diff --git a/Source/Core/Core/Src/Plugins/Plugin_Video.h b/Source/Core/Core/Src/Plugins/Plugin_Video.h index 20be58bff5..b3c0a18a10 100644 --- a/Source/Core/Core/Src/Plugins/Plugin_Video.h +++ b/Source/Core/Core/Src/Plugins/Plugin_Video.h @@ -32,7 +32,6 @@ void UnloadPlugin(); // Function Types typedef void (__cdecl* TGetDllInfo)(PLUGIN_INFO*); -//typedef void (__cdecl* TDllAbout)(HWND); typedef void (__cdecl* TDllConfig)(HWND); typedef void (__cdecl* TDllDebugger)(HWND, bool); typedef void (__cdecl* TVideo_Initialize)(SVideoInitialize*); diff --git a/Source/Core/Core/Src/Plugins/Plugin_Wiimote.h b/Source/Core/Core/Src/Plugins/Plugin_Wiimote.h index fff6dea3fb..23653dfb4f 100644 --- a/Source/Core/Core/Src/Plugins/Plugin_Wiimote.h +++ b/Source/Core/Core/Src/Plugins/Plugin_Wiimote.h @@ -28,7 +28,6 @@ void UnloadPlugin(); // Function Types typedef void (__cdecl* TGetDllInfo)(PLUGIN_INFO*); -//typedef void (__cdecl* TDllAbout)(HWND); typedef void (__cdecl* TDllConfig)(HWND); typedef void (__cdecl* TWiimote_Initialize)(SWiimoteInitialize); typedef void (__cdecl* TWiimote_Shutdown)(); diff --git a/Source/Plugins/Plugin_DSP_HLE/Src/main.cpp b/Source/Plugins/Plugin_DSP_HLE/Src/main.cpp index e80023195c..c21cb32f94 100644 --- a/Source/Plugins/Plugin_DSP_HLE/Src/main.cpp +++ b/Source/Plugins/Plugin_DSP_HLE/Src/main.cpp @@ -183,10 +183,6 @@ void GetDllInfo(PLUGIN_INFO* _PluginInfo) #endif } -void DllAbout(HWND _hParent) -{ -} - void DllConfig(HWND _hParent) { #ifdef _WIN32