diff options
Diffstat (limited to 'protocols/Omegle/main.cpp')
-rw-r--r-- | protocols/Omegle/main.cpp | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/protocols/Omegle/main.cpp b/protocols/Omegle/main.cpp index 3dd6570182..d433e48e86 100644 --- a/protocols/Omegle/main.cpp +++ b/protocols/Omegle/main.cpp @@ -75,22 +75,6 @@ DWORD WINAPI DllMain(HINSTANCE hInstance,DWORD,LPVOID) extern "C" __declspec(dllexport) PLUGININFOEX* MirandaPluginInfoEx(DWORD mirandaVersion)
{
- if(mirandaVersion > PLUGIN_MAKE_VERSION(0,10,0,0) &&
- mirandaVersion < PLUGIN_MAKE_VERSION(0,10,0,2))
- {
- MessageBox(0,_T("The Omegle protocol plugin cannot be loaded. ")
- _T("It requires Miranda IM 0.10 alpha build #2 or later."),_T("Miranda"),
- MB_OK|MB_ICONWARNING|MB_SETFOREGROUND|MB_TOPMOST);
- return NULL;
- }
- else if(mirandaVersion < PLUGIN_MAKE_VERSION(0,9,43,0))
- {
- MessageBox(0,_T("The Omegle protocol plugin cannot be loaded. ")
- _T("It requires Miranda IM 0.9.43 or later."),_T("Miranda"),
- MB_OK|MB_ICONWARNING|MB_SETFOREGROUND|MB_TOPMOST);
- return NULL;
- }
-
g_mirandaVersion = mirandaVersion;
return &pluginInfo;
}
|