diff options
Diffstat (limited to 'plugins/Clist_nicer/SRC')
-rw-r--r-- | plugins/Clist_nicer/SRC/init.cpp | 24 |
1 files changed, 13 insertions, 11 deletions
diff --git a/plugins/Clist_nicer/SRC/init.cpp b/plugins/Clist_nicer/SRC/init.cpp index ee3bb78732..47c1e5c249 100644 --- a/plugins/Clist_nicer/SRC/init.cpp +++ b/plugins/Clist_nicer/SRC/init.cpp @@ -103,17 +103,19 @@ INT_PTR TrayIconProcessMessage(WPARAM wParam, LPARAM lParam); void ( *saveRecalcScrollBar )(HWND hwnd, struct ClcData *dat);
void RecalcScrollBar(HWND hwnd, struct ClcData *dat);
-PLUGININFOEX pluginInfo = {
-#if defined(_UNICODE)
- sizeof(PLUGININFOEX), "CList Nicer+ (Unicode)", PLUGIN_MAKE_VERSION(0, 9, 2, 1),
-#else
- sizeof(PLUGININFOEX), "CList Nicer+", PLUGIN_MAKE_VERSION(0, 9, 2, 1),
-#endif
- "Display contacts, event notifications, protocol status",
- "Pixel, egoDust, cyreve, Nightwish", "", "Copyright 2000-2010 Miranda-IM project", "http://www.miranda-im.org",
- UNICODE_AWARE,
- DEFMOD_CLISTALL,
- {0x8f79b4ee, 0xeb48, 0x4a03, { 0x87, 0x3e, 0x27, 0xbe, 0x6b, 0x7e, 0x9a, 0x25 }} //{8F79B4EE-EB48-4a03-873E-27BE6B7E9A25}
+PLUGININFOEX pluginInfo =
+{
+ sizeof(PLUGININFOEX),
+ "CList Nicer+",
+ PLUGIN_MAKE_VERSION(0, 9, 2, 1),
+ "Display contacts, event notifications, protocol status",
+ "Pixel, egoDust, cyreve, Nightwish",
+ "",
+ "Copyright 2000-2010 Miranda-IM project",
+ "http://www.miranda-im.org",
+ UNICODE_AWARE,
+ DEFMOD_CLISTALL,
+ {0x8f79b4ee, 0xeb48, 0x4a03, { 0x87, 0x3e, 0x27, 0xbe, 0x6b, 0x7e, 0x9a, 0x25 }} //{8F79B4EE-EB48-4a03-873E-27BE6B7E9A25}
};
#if defined(_UNICODE)
|