diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2013-03-08 15:40:42 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2013-03-08 15:40:42 +0000 |
commit | 5e3d3e76ed1d3cae5c651b2cdb4dfed4dde5c498 (patch) | |
tree | 952b239631545f8ccf086552aa327929611e3b31 /plugins/Scriver/src/srmm.cpp | |
parent | 9adcaf894fe2d64208799fab35765283d1f9f197 (diff) |
added version info
git-svn-id: http://svn.miranda-ng.org/main/trunk@3923 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Scriver/src/srmm.cpp')
-rw-r--r-- | plugins/Scriver/src/srmm.cpp | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/plugins/Scriver/src/srmm.cpp b/plugins/Scriver/src/srmm.cpp index 2f6204da9c..f7da293973 100644 --- a/plugins/Scriver/src/srmm.cpp +++ b/plugins/Scriver/src/srmm.cpp @@ -20,6 +20,7 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
+
#include "commonheaders.h"
int OnLoadModule(void);
@@ -35,15 +36,15 @@ ITaskbarList3 * pTaskbarInterface; PLUGININFOEX pluginInfo = {
sizeof(PLUGININFOEX),
- "Scriver",
- PLUGIN_MAKE_VERSION(2, 10, 0, 2),
- "Scriver - send and receive instant messages.",
- "Miranda IM Development Team",
- "the_leech@users.berlios.de",
- "Copyright (c) 2000-2012 Miranda IM Project, 2012-2013 Miranda NG Project",
- "http://miranda-ng.org/",
+ __PLUGIN_NAME,
+ PLUGIN_MAKE_VERSION(__MAJOR_VERSION, __MINOR_VERSION, __RELEASE_NUM, __BUILD_NUM),
+ __DESCRIPTION,
+ __AUTHOR,
+ __AUTHOREMAIL,
+ __COPYRIGHT,
+ __AUTHORWEB,
UNICODE_AWARE,
- //{84636F78-2057-4302-8A65-23A16D46844C}
+ // {84636F78-2057-4302-8A65-23A16D46844C}
{0x84636f78, 0x2057, 0x4302, {0x8a, 0x65, 0x23, 0xa1, 0x6d, 0x46, 0x84, 0x4c}}
};
|