diff options
author | George Hazan <george.hazan@gmail.com> | 2012-10-10 12:15:51 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-10-10 12:15:51 +0000 |
commit | 22a761bfdbc4b9951ea193fba7b2cc75376ebec2 (patch) | |
tree | 35ca01ebd63893e3fdfe603913465622ac357790 /plugins/CyrTranslit/src/main.cpp | |
parent | a563a18a62ff3bacc47076d6e6660c284410e505 (diff) |
- adaptation for new NG filters;
- code cleaning;
- version bump + the special resource added
git-svn-id: http://svn.miranda-ng.org/main/trunk@1862 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/CyrTranslit/src/main.cpp')
-rw-r--r-- | plugins/CyrTranslit/src/main.cpp | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/plugins/CyrTranslit/src/main.cpp b/plugins/CyrTranslit/src/main.cpp index 49761dc305..8266dd748d 100644 --- a/plugins/CyrTranslit/src/main.cpp +++ b/plugins/CyrTranslit/src/main.cpp @@ -25,15 +25,15 @@ int hLangpack = 0; PLUGININFOEX pluginInfoEx={
sizeof(PLUGININFOEX),
- PLG_SHORTNAME,
- PLG_VERSION,
- PLG_DESCRIPTION,
- PLG_AUTHOR,
- PLG_AUTHOREMAIL,
- PLG_COPYRIGHT,
- PLG_HOMEPAGE,
- PLG_FLAGS,
- MIID_V_CYRTRANSLIT
+ __PLUGIN_NAME,
+ PLUGIN_MAKE_VERSION(__MAJOR_VERSION, __MINOR_VERSION, __RELEASE_NUM, __BUILD_NUM),
+ __DESCRIPTION,
+ __AUTHOR,
+ __AUTHOREMAIL,
+ __COPYRIGHT,
+ __AUTHORWEB,
+ UNICODE_AWARE,
+ {0xbcec0bd7, 0xca59, 0x44b2, {0x9a, 0x14, 0x3a, 0x14, 0x98, 0x0f, 0x52, 0x4a}}
};
//------------------------------------------------------------------------------
@@ -69,4 +69,4 @@ extern "C" __declspec(dllexport) int Load(void) extern "C" __declspec(dllexport) int Unload(void)
{
return 0;
-}
\ No newline at end of file +}
|