diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-07-23 12:21:37 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-07-23 12:21:37 +0000 |
commit | 7a8e3055b162b2572152ed951ebcefd60182edbc (patch) | |
tree | 415d5bc98ce406df04f8e9b19de99a10e1c275a1 /plugins/PasteIt/src/version.h | |
parent | 177c84716db384c8be095219c58d0a68f87101fe (diff) |
PasteIt, PopUp, ProfileManager: changed folder structure
git-svn-id: http://svn.miranda-ng.org/main/trunk@1117 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/PasteIt/src/version.h')
-rw-r--r-- | plugins/PasteIt/src/version.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/plugins/PasteIt/src/version.h b/plugins/PasteIt/src/version.h new file mode 100644 index 0000000000..e7d016c0a4 --- /dev/null +++ b/plugins/PasteIt/src/version.h @@ -0,0 +1,20 @@ +#define __MAJOR_VERSION 1
+#define __MINOR_VERSION 0
+#define __RELEASE_NUM 0
+#define __BUILD_NUM 3
+
+#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 "Paste It"
+#define __INTERNAL_NAME "PasteIt"
+#define __FILENAME "PasteIt.dll"
+#define __DESCRIPTION "Uploads the text to web page and sends the URL to your friends."
+#define __AUTHOR "Krzysztof Kral"
+#define __AUTHOREMAIL "programista@poczta.of.pl"
+#define __AUTHORWEB "http://programista.free.of.pl/miranda/"
+#define __COPYRIGHT "Copyright (c) 2011 KrzysztofKral"
|