diff options
-rw-r--r-- | plugins/Mir_core/modules.cpp | 2 | ||||
-rw-r--r-- | src/core/stduserinfo/main.cpp | 5 |
2 files changed, 1 insertions, 6 deletions
diff --git a/plugins/Mir_core/modules.cpp b/plugins/Mir_core/modules.cpp index 88dd79a138..f87c7bb192 100644 --- a/plugins/Mir_core/modules.cpp +++ b/plugins/Mir_core/modules.cpp @@ -106,7 +106,7 @@ MIR_CORE_DLL(HANDLE) CreateHookableEvent(const char *name) int idx;
if ((idx = hooks.getIndex((THook*)name)) != -1)
- return NULL;
+ return hooks[idx];
THook* newItem = (THook*)mir_alloc(sizeof(THook));
strncpy(newItem->name, name, sizeof(newItem->name)); newItem->name[ MAXMODULELABELLENGTH-1 ] = 0;
diff --git a/src/core/stduserinfo/main.cpp b/src/core/stduserinfo/main.cpp index 22420f0fa3..594f5ba805 100644 --- a/src/core/stduserinfo/main.cpp +++ b/src/core/stduserinfo/main.cpp @@ -62,11 +62,6 @@ extern "C" __declspec(dllexport) const MUUID* MirandaPluginInterfaces(void) return interfaces;
}
-static int OnModulesLoaded(WPARAM, LPARAM)
-{
- return 0;
-}
-
extern "C" int __declspec(dllexport) Load(void)
{
mir_getLP(&pluginInfo);
|