diff options
-rw-r--r-- | plugins/Modernb/init.cpp | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/plugins/Modernb/init.cpp b/plugins/Modernb/init.cpp index 6ff21f5963..7ca3ed79ab 100644 --- a/plugins/Modernb/init.cpp +++ b/plugins/Modernb/init.cpp @@ -56,10 +56,14 @@ static HRESULT SubclassClistInterface(); static HRESULT CreateHookableEvents();
int EventArea_UnloadModule();
+__forceinline int MakeVer(int a, int b, int c, int d)
+{ return PLUGIN_MAKE_VERSION(a,b,c,d);
+}
+
PLUGININFOEX pluginInfo = {
sizeof(PLUGININFOEX),
DEBUG_AWARE_STR "Modern Contact List '09",
- 0, //will initialized later in MirandaPluginInfoEx
+ MakeVer(PRODUCT_VERSION),
"Display contacts, event notifications, protocol status with advantage visual modifications. Supported MW modifications, enchanced metacontact cooperation.",
"Artem Shpynov, Ricardo Pescuma Domenecci and Anton Senko based on clist_mw by Bethoven",
"ashpynov@gmail.com" ,
@@ -83,11 +87,6 @@ BOOL WINAPI DllMain(HINSTANCE hInstDLL, DWORD dwReason, LPVOID reserved) return TRUE;
}
-inline int MakeVer(int a, int b, int c, int d)
-{
- return PLUGIN_MAKE_VERSION(a,b,c,d);
-}
-
PLUGININTERFACE PLUGININFOEX* MirandaPluginInfoEx(DWORD mirandaVersion)
{
return &pluginInfo;
|