summaryrefslogtreecommitdiff
path: root/plugins/FreeImage/Miranda
diff options
context:
space:
mode:
authorKirill Volinsky <mataes2007@gmail.com>2012-06-05 20:05:22 +0000
committerKirill Volinsky <mataes2007@gmail.com>2012-06-05 20:05:22 +0000
commite410d433ad3d6c74d60f0c0797811cf409b68a41 (patch)
tree1af6dd22dd598b634a38614dd4ddfc49f0f130fe /plugins/FreeImage/Miranda
parent9e97d362c526ddcf8c6ee68891575a7d24918b67 (diff)
fixed plugin info
git-svn-id: http://svn.miranda-ng.org/main/trunk@322 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/FreeImage/Miranda')
-rw-r--r--plugins/FreeImage/Miranda/main.cpp21
-rw-r--r--plugins/FreeImage/Miranda/version.h8
2 files changed, 16 insertions, 13 deletions
diff --git a/plugins/FreeImage/Miranda/main.cpp b/plugins/FreeImage/Miranda/main.cpp
index 7cfad31ce8..32b5e7a0e6 100644
--- a/plugins/FreeImage/Miranda/main.cpp
+++ b/plugins/FreeImage/Miranda/main.cpp
@@ -49,22 +49,17 @@ PLUGINLINK *pluginLink = NULL;
static const PLUGININFOEX pluginInfoEx = {
sizeof(PLUGININFOEX),
- "Miranda Image services",
+ __PLUGIN_NAME,
__VERSION_DWORD,
- "Generic image services for Miranda IM.",
- "Nightwish, The FreeImage project (http://freeimage.sourceforge.net/)",
- "",
- "Copyright 2000-2012 Miranda-IM project, uses the FreeImage distribution",
- "http://www.miranda-im.org",
+ __DESCRIPTION,
+ __AUTHOR,
+ __AUTHOREMAIL,
+ __COPYRIGHT,
+ __AUTHORWEB,
UNICODE_AWARE,
0,
- #if defined(_UNICODE)
- // {7C070F7C-459E-46b7-8E6D-BC6EFAA22F78}
- { 0x7c070f7c, 0x459e, 0x46b7, { 0x8e, 0x6d, 0xbc, 0x6e, 0xfa, 0xa2, 0x2f, 0x78 } }
- #else
- // {287F31D5-147C-48bb-B428-D7C260272535}
- { 0x287f31d5, 0x147c, 0x48bb, { 0xb4, 0x28, 0xd7, 0xc2, 0x60, 0x27, 0x25, 0x35 } }
- #endif
+ // {7C070F7C-459E-46b7-8E6D-BC6EFAA22F78}
+ { 0x7c070f7c, 0x459e, 0x46b7, { 0x8e, 0x6d, 0xbc, 0x6e, 0xfa, 0xa2, 0x2f, 0x78 } }
};
/*
diff --git a/plugins/FreeImage/Miranda/version.h b/plugins/FreeImage/Miranda/version.h
index 38dd9a43cd..5504fc0c44 100644
--- a/plugins/FreeImage/Miranda/version.h
+++ b/plugins/FreeImage/Miranda/version.h
@@ -3,3 +3,11 @@
#define __FILEVERSION_STRING MIRANDA_VERSION_FILEVERSION
#define __VERSION_STRING MIRANDA_VERSION_STRING
#define __VERSION_DWORD MIRANDA_VERSION_DWORD
+#define __PLUGIN_NAME "AdvaImg"
+#define __INTERNAL_NAME "AdvaImg"
+#define __FILENAME "AdvaImg.dll"
+#define __DESCRIPTION "Generic image services for Miranda IM."
+#define __AUTHOR "Nightwish, The FreeImage project (http://freeimage.sourceforge.net/)"
+#define __AUTHOREMAIL ""
+#define __AUTHORWEB "http://www.miranda-im.org"
+#define __COPYRIGHT "© 2000-2012 Miranda-IM project, uses the FreeImage distribution"