diff options
author | George Hazan <ghazan@miranda.im> | 2021-03-25 15:32:16 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2021-03-25 15:32:16 +0300 |
commit | acdaebe9729b0d50168ff51657f1b8220302d82a (patch) | |
tree | 436c55d1add00175ed393dbaebad253da7ccc84c /include | |
parent | 5623e34833d5e973f2c9897cd022d5ca6270904c (diff) |
ME_SYSTEM_MODULELOAD & ME_SYSTEM_MODULEUNLOAD: handier parameter passing
Diffstat (limited to 'include')
-rw-r--r-- | include/newpluginapi.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/newpluginapi.h b/include/newpluginapi.h index b165a51cd8..97ef743701 100644 --- a/include/newpluginapi.h +++ b/include/newpluginapi.h @@ -129,7 +129,7 @@ struct PLUGININFOEX /////////////////////////////////////////////////////////////////////////////////////////
// Miranda/System/LoadModule event
// called when a plugin is being loaded dynamically
-// wParam = PLUGININFOEX*
+// wParam = CMPluginBase*
// lParam = HINSTANCE of the loaded plugin
#define ME_SYSTEM_MODULELOAD "Miranda/System/LoadModule"
@@ -137,7 +137,7 @@ struct PLUGININFOEX /////////////////////////////////////////////////////////////////////////////////////////
// Miranda/System/UnloadModule event
// called when a plugin is being unloaded dynamically
-// wParam = PLUGININFOEX*
+// wParam = CMPluginBase*
// lParam = HINSTANCE of the plugin to be unloaded
#define ME_SYSTEM_MODULEUNLOAD "Miranda/System/UnloadModule"
|