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/FloatingContacts | |
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/FloatingContacts')
-rw-r--r-- | plugins/FloatingContacts/main.cpp | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/plugins/FloatingContacts/main.cpp b/plugins/FloatingContacts/main.cpp index 8c572e210d..187160f47d 100644 --- a/plugins/FloatingContacts/main.cpp +++ b/plugins/FloatingContacts/main.cpp @@ -145,20 +145,6 @@ static void InitOptions() { fcOpt.bShowIdle = TRUE;
}
-
-PLUGININFO pluginInfo = {
- sizeof(PLUGININFO),
- __PLUGIN_NAME,
- 0,
- __DESC,
- __AUTHOR,
- __AUTHOREMAIL,
- __COPYRIGHT,
- __AUTHORWEB,
- UNICODE_AWARE,
- 0
-};
-
// {53C715A8-EB01-4136-A73C-441868610074}
#define MIID_FLTCONT { 0x53c715a8, 0xeb01, 0x4136, { 0xa7, 0x3c, 0x44, 0x18, 0x68, 0x61, 0x0, 0x74 } }
@@ -214,17 +200,6 @@ BOOL WINAPI DllMain( HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved ) return( TRUE );
}
-
-
-extern "C" __declspec(dllexport) PLUGININFO* MirandaPluginInfo( DWORD mirandaVersion )
-{
- if ( mirandaVersion < MakeVer(MINIMAL_COREVERSION) ) return NULL;
- pluginInfo.version = MakeVer(PRODUCT_VERSION);
- return &pluginInfo;
-}
-
-
-
extern "C" int __declspec(dllexport) Load( PLUGINLINK *link )
{
SetLastError( 0 );
|