summaryrefslogtreecommitdiff
path: root/plugins/AutoShutdown/src
diff options
context:
space:
mode:
authorKirill Volinsky <mataes2007@gmail.com>2012-10-11 19:09:02 +0000
committerKirill Volinsky <mataes2007@gmail.com>2012-10-11 19:09:02 +0000
commitae1775795ae23f67db0079cd845b904c5d4a8e98 (patch)
tree022dafc026acb14685b9e898ec8611f8814d01be /plugins/AutoShutdown/src
parent53bc4ab87bcaf5415f8e130cc807da7b9f7e9e82 (diff)
AutoShutdown
standard version file git-svn-id: http://svn.miranda-ng.org/main/trunk@1875 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/AutoShutdown/src')
-rw-r--r--plugins/AutoShutdown/src/common.h1
-rw-r--r--plugins/AutoShutdown/src/main.cpp15
-rw-r--r--plugins/AutoShutdown/src/version.h23
3 files changed, 28 insertions, 11 deletions
diff --git a/plugins/AutoShutdown/src/common.h b/plugins/AutoShutdown/src/common.h
index 2c79be9fb5..a11b612b94 100644
--- a/plugins/AutoShutdown/src/common.h
+++ b/plugins/AutoShutdown/src/common.h
@@ -82,3 +82,4 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#include "utils.h"
#include "watcher.h"
#include "resource.h"
+#include "version.h"
diff --git a/plugins/AutoShutdown/src/main.cpp b/plugins/AutoShutdown/src/main.cpp
index 46e228d809..c5829eee42 100644
--- a/plugins/AutoShutdown/src/main.cpp
+++ b/plugins/AutoShutdown/src/main.cpp
@@ -19,7 +19,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include "common.h"
-#include "version.h"
HINSTANCE hInst;
static HANDLE hHookModulesLoaded;
@@ -28,13 +27,13 @@ int hLangpack;
PLUGININFOEX pluginInfo={
sizeof(PLUGININFOEX),
- "AutoShutdown",
- PLUGIN_VERSION,
- "Adds the possibility to shutdown the computer when a specified event occurs.", /* autotranslated */
- "H. Herkenrath",
- "hrathh@users.sourceforge.net", /* @ will be set later */
- "© 2004-2007 H. Herkenrath",
- "http://miranda-ng.org/",
+ __PLUGIN_NAME,
+ PLUGIN_MAKE_VERSION(__MAJOR_VERSION, __MINOR_VERSION, __RELEASE_NUM, __BUILD_NUM),
+ __DESCRIPTION,
+ __AUTHOR,
+ __AUTHOREMAIL,
+ __COPYRIGHT,
+ __AUTHORWEB,
UNICODE_AWARE,
// {9DE24579-5C5C-49aa-80E8-4D38E4344E63}
{0x9de24579,0x5c5c,0x49aa,{0x80,0xe8,0x4d,0x38,0xe4,0x34,0x4e,0x63}},
diff --git a/plugins/AutoShutdown/src/version.h b/plugins/AutoShutdown/src/version.h
index 70dd82fe01..05cc6a39bb 100644
--- a/plugins/AutoShutdown/src/version.h
+++ b/plugins/AutoShutdown/src/version.h
@@ -19,6 +19,23 @@ along with this program (Shutdown-License.txt); if not, write to the Free Softwa
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-#define PLUGIN_VERSION PLUGIN_MAKE_VERSION(1,4,0,2)
-#define FILE_VERSION 1,4,0,2
-#define FILE_VERSION_STR "1.4.0.2"
+#define __MAJOR_VERSION 1
+#define __MINOR_VERSION 4
+#define __RELEASE_NUM 0
+#define __BUILD_NUM 2
+
+#define __FILEVERSION_STRING __MAJOR_VERSION,__MINOR_VERSION,__RELEASE_NUM,__BUILD_NUM
+#define __FILEVERSION_DOTS __MAJOR_VERSION.__MINOR_VERSION.__RELEASE_NUM.__BUILD_NUM
+
+#define __STRINGIFY_IMPL(x) #x
+#define __STRINGIFY(x) __STRINGIFY_IMPL(x)
+#define __VERSION_STRING __STRINGIFY(__FILEVERSION_DOTS)
+
+#define __PLUGIN_NAME "AutoShutdown"
+#define __INTERNAL_NAME "AutoShutdown"
+#define __FILENAME "AutoShutdown.dll"
+#define __DESCRIPTION "Adds the possibility to shutdown the computer when a specified event occurs."
+#define __AUTHOR "H. Herkenrath"
+#define __AUTHOREMAIL "hrathh@users.sourceforge.net"
+#define __AUTHORWEB "http://miranda-ng.org/"
+#define __COPYRIGHT "© 2004-2007 H. Herkenrath"