diff options
author | (no author) <(no author)@4f64403b-2f21-0410-a795-97e2b3489a10> | 2008-07-18 13:00:08 +0000 |
---|---|---|
committer | (no author) <(no author)@4f64403b-2f21-0410-a795-97e2b3489a10> | 2008-07-18 13:00:08 +0000 |
commit | a3bfb34d1cfbbba473ea6c9494299b35c7730cf9 (patch) | |
tree | db1649be05320bbbd0930b0f9cb707e1f069864c /metacontacts | |
parent | 6a1d466d31fd9c3b29b6ee8fa9bebe5fa0c08f6d (diff) |
Prevent loading on pre 0.8 Miranda
git-svn-id: https://server.scottellis.com.au/svn/mim_plugs@426 4f64403b-2f21-0410-a795-97e2b3489a10
Diffstat (limited to 'metacontacts')
-rw-r--r-- | metacontacts/meta_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/metacontacts/meta_main.c b/metacontacts/meta_main.c index c3342dd..5a526c1 100644 --- a/metacontacts/meta_main.c +++ b/metacontacts/meta_main.c @@ -117,7 +117,7 @@ HANDLE metaMainThread; //!< Duplicate of thread handle */
__declspec(dllexport) PLUGININFOEX* MirandaPluginInfoEx(DWORD mirandaVersion)
{
- return &pluginInfo;
+ return mirandaVersion < PLUGIN_MAKE_VERSION(0,8,0,0) ? NULL : &pluginInfo;
}
__declspec(dllexport) PLUGININFO* MirandaPluginInfo(DWORD mirandaVersion)
|