diff options
author | George Hazan <ghazan@miranda.im> | 2018-05-29 17:17:53 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-05-29 17:17:53 +0300 |
commit | ce3aabf865de4adf5c5cdd7ddf809a12d8f9d0f2 (patch) | |
tree | 6181984ee8a24b86975d0ab0f7ac4cfdfa34854c /plugins/StartupSilence/src | |
parent | 67a82d69d7d2b38b4da32908854cc7c1ec7f0241 (diff) |
common version resource extracted to the separate file
own version resource remains only for miranda32.exe, mir_app.dll and pascal plugins
Diffstat (limited to 'plugins/StartupSilence/src')
-rw-r--r-- | plugins/StartupSilence/src/main.cpp | 2 | ||||
-rw-r--r-- | plugins/StartupSilence/src/version.h | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/plugins/StartupSilence/src/main.cpp b/plugins/StartupSilence/src/main.cpp index 0048e15541..60f72d9e28 100644 --- a/plugins/StartupSilence/src/main.cpp +++ b/plugins/StartupSilence/src/main.cpp @@ -67,7 +67,7 @@ PLUGININFOEX pluginInfoEx = sizeof(PLUGININFOEX),
__PLUGIN_NAME,
PLUGIN_MAKE_VERSION(__MAJOR_VERSION, __MINOR_VERSION, __RELEASE_NUM, __BUILD_NUM),
- __DESC,
+ __DESCRIPTION,
__AUTHOR,
__COPYRIGHT,
__AUTHORWEB,
diff --git a/plugins/StartupSilence/src/version.h b/plugins/StartupSilence/src/version.h index 0d0d48ae29..49bc285fa4 100644 --- a/plugins/StartupSilence/src/version.h +++ b/plugins/StartupSilence/src/version.h @@ -13,10 +13,10 @@ // stuff that will be used in PluginInfo section and in Version resource
#define __PLUGIN_NAME "StartupSilence"
#define __FILENAME "StartupSilence.dll"
-#define __DESC "Suppresses popups and mutes sounds for 10-300 sec at Miranda NG startup, then sets them back to predefined state (Automatically per computer settings)."
-#define __AUTHOR "Vladimir Lyubimov"
-#define __AUTHORWEB "https://miranda-ng.org/"
-#define __COPYRIGHT "© 2012-18 Vladimir Lyubimov"
+#define __DESCRIPTION "Suppresses popups and mutes sounds for 10-300 sec at Miranda NG startup, then sets them back to predefined state (Automatically per computer settings)."
+#define __AUTHOR "Vladimir Lyubimov"
+#define __AUTHORWEB "https://miranda-ng.org/"
+#define __COPYRIGHT "© 2012-18 Vladimir Lyubimov"
// other stuff for Version resource
#include <stdver.h>
|