diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2012-06-05 15:39:50 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2012-06-05 15:39:50 +0000 |
commit | 357af8c5a3cf922818ee014a8f2b54a799917eea (patch) | |
tree | 2ed1b38f979d7b3991f9ca9a4103347f2fddfe62 /plugins/Modernb | |
parent | a039e3378554f4f7b12a38722f72dfded2f4b277 (diff) |
removed old PLUGININFO. plugin info cleanup starts
git-svn-id: http://svn.miranda-ng.org/main/trunk@312 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Modernb')
-rw-r--r-- | plugins/Modernb/init.cpp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/plugins/Modernb/init.cpp b/plugins/Modernb/init.cpp index 849cb767a5..6ff21f5963 100644 --- a/plugins/Modernb/init.cpp +++ b/plugins/Modernb/init.cpp @@ -67,11 +67,7 @@ PLUGININFOEX pluginInfo = { "http://miranda-im.org/development",
UNICODE_AWARE,
DEFMOD_CLISTALL,
-#ifdef UNICODE
{0x43909b6, 0xaad8, 0x4d82, { 0x8e, 0xb5, 0x9f, 0x64, 0xcf, 0xe8, 0x67, 0xcd }} //{043909B6-AAD8-4d82-8EB5-9F64CFE867CD}
-#else
- {0xf6588c56, 0x15dc, 0x4cd7, { 0x8c, 0xf9, 0x48, 0xab, 0x6c, 0x5f, 0xd2, 0xf }} //{F6588C56-15DC-4cd7-8CF9-48AB6C5FD20F}
-#endif
};
static const MUUID interfaces[] = {MIID_CLIST, MIID_LAST};
@@ -94,9 +90,6 @@ inline int MakeVer(int a, int b, int c, int d) PLUGININTERFACE PLUGININFOEX* MirandaPluginInfoEx(DWORD mirandaVersion)
{
- if ( mirandaVersion < MINIMAL_COREVERSION_NUM )
- return NULL;
- pluginInfo.version=MakeVer(PRODUCT_VERSION);
return &pluginInfo;
}
|