summaryrefslogtreecommitdiff
path: root/plugins/Clist_nicer/skineditor
diff options
context:
space:
mode:
authorKirill Volinsky <mataes2007@gmail.com>2012-06-05 15:39:50 +0000
committerKirill Volinsky <mataes2007@gmail.com>2012-06-05 15:39:50 +0000
commit357af8c5a3cf922818ee014a8f2b54a799917eea (patch)
tree2ed1b38f979d7b3991f9ca9a4103347f2fddfe62 /plugins/Clist_nicer/skineditor
parenta039e3378554f4f7b12a38722f72dfded2f4b277 (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/Clist_nicer/skineditor')
-rw-r--r--plugins/Clist_nicer/skineditor/main.cpp50
1 files changed, 8 insertions, 42 deletions
diff --git a/plugins/Clist_nicer/skineditor/main.cpp b/plugins/Clist_nicer/skineditor/main.cpp
index fc496c1cc9..929b083c2d 100644
--- a/plugins/Clist_nicer/skineditor/main.cpp
+++ b/plugins/Clist_nicer/skineditor/main.cpp
@@ -26,36 +26,18 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#define ID_EXTBKSEPARATOR 40200
-/*
-PLUGININFO pluginInfo = {
- sizeof(PLUGININFO),
- "Skin editor",
- PLUGIN_MAKE_VERSION(0, 0, 0, 4),
- "Skin editor for clist_nicer+",
- "Nightwish",
- "",
- "Copyright 2000-2006 Miranda-IM project",
- "http://www.miranda-im.org",
- 0,
- 0
-};
-*/
-
PLUGININFOEX pluginInfo = {
-#if defined(_UNICODE)
- sizeof(PLUGININFOEX), "Skin editor for clist_nicer+ (unicode)", PLUGIN_MAKE_VERSION(0, 0, 0, 4),
-#else
- sizeof(PLUGININFOEX), "Skin editor for clist_nicer+", PLUGIN_MAKE_VERSION(0, 0, 0, 4),
-#endif
- "Allow inline skin item editing for clist nicer+",
- "Nightwish, Pixel", "", "Copyright 2000-2006 Miranda-IM project", "http://www.miranda-im.org",
+ sizeof(PLUGININFOEX),
+ "Skin editor for clist_nicer+ (unicode)",
+ PLUGIN_MAKE_VERSION(0, 0, 0, 4),
+ "Allow inline skin item editing for clist nicer+.",
+ "Nightwish, Pixel",
+ "",
+ "Copyright 2000-2006 Miranda-IM project",
+ "http://www.miranda-im.org",
UNICODE_AWARE,
0,
-#if defined(_UNICODE)
{0x21948c89, 0xb549, 0x4c9d, { 0x8b, 0x4f, 0x3f, 0x37, 0x26, 0xec, 0x6b, 0x4b }}
-#else
- {0xa0c06bfe, 0x64cf, 0x487e, { 0x82, 0x87, 0x8c, 0x9b, 0x1, 0x97, 0x7d, 0xff }}
-#endif
};
HINSTANCE g_hInst = 0;
@@ -943,13 +925,6 @@ static int LoadModule()
extern "C" __declspec(dllexport) PLUGININFOEX * MirandaPluginInfoEx(DWORD mirandaVersion)
{
-#if defined(_UNICODE)
- pluginInfo.flags |= UNICODE_AWARE;
- if (mirandaVersion < PLUGIN_MAKE_VERSION(0, 7, 0, 0))
-#else
- if (mirandaVersion < PLUGIN_MAKE_VERSION(0, 7, 0, 0))
-#endif
- return NULL;
return &pluginInfo;
}
@@ -962,15 +937,6 @@ extern "C" __declspec(dllexport) const MUUID * MirandaPluginInterfaces(void)
return interfaces;
}
-/*
-extern "C" __declspec(dllexport) PLUGININFO * MirandaPluginInfo(DWORD mirandaVersion)
-{
- if (mirandaVersion < PLUGIN_MAKE_VERSION(0, 4, 0, 0))
- return NULL;
- return &pluginInfo;
-}
-*/
-
static int ModulesLoaded(WPARAM wParam, LPARAM lParam)
{
return 0;