diff options
Diffstat (limited to 'db3x_autobackups/init.c')
-rw-r--r-- | db3x_autobackups/init.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/db3x_autobackups/init.c b/db3x_autobackups/init.c index ae2e7fa..7b60ab5 100644 --- a/db3x_autobackups/init.c +++ b/db3x_autobackups/init.c @@ -175,6 +175,10 @@ __declspec(dllexport) DATABASELINK* DatabasePluginInfo(void * reserved) __declspec(dllexport) PLUGININFOEX * MirandaPluginInfoEx(DWORD mirandaVersion)
{
+ if ( mirandaVersion < PLUGIN_MAKE_VERSION(0,7,0,0)) {
+ MessageBox( NULL, _T("The db3x_mmap plugin cannot be loaded. It requires Miranda IM 0.7.0.0 or later."), _T("db3x_mmap Plugin"), MB_OK|MB_ICONWARNING|MB_SETFOREGROUND|MB_TOPMOST );
+ return NULL;
+ }
return &pluginInfo;
}
|