summaryrefslogtreecommitdiff
path: root/plugins/StartupSilence/res/version.rc
diff options
context:
space:
mode:
authorVadim Dashevskiy <watcherhd@gmail.com>2013-10-25 19:52:36 +0000
committerVadim Dashevskiy <watcherhd@gmail.com>2013-10-25 19:52:36 +0000
commit4f88e37aadccfd0ebc4c4ac880e310d2700c75e4 (patch)
treeb916a6827e572b2d089b8a981cebe10bba02adce /plugins/StartupSilence/res/version.rc
parentd2a51dc68f19b260883a9f35b6e150f08c01f63d (diff)
StartupSilence plugin added (written by person)
git-svn-id: http://svn.miranda-ng.org/main/trunk@6627 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/StartupSilence/res/version.rc')
-rw-r--r--plugins/StartupSilence/res/version.rc44
1 files changed, 44 insertions, 0 deletions
diff --git a/plugins/StartupSilence/res/version.rc b/plugins/StartupSilence/res/version.rc
new file mode 100644
index 0000000000..2ba5a1d38f
--- /dev/null
+++ b/plugins/StartupSilence/res/version.rc
@@ -0,0 +1,44 @@
+#ifdef APSTUDIO_INVOKED
+#error this file is not editable by Microsoft Visual C++
+#endif //APSTUDIO_INVOKED
+
+#include "..\src\version.h"
+#include "winres.h"
+
+#ifdef _WIN32
+LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
+#endif //_WIN32
+
+VS_VERSION_INFO VERSIONINFO
+ FILEVERSION __FILEVERSION_STRING
+ PRODUCTVERSION __FILEVERSION_STRING
+ FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
+#ifdef _DEBUG
+ FILEFLAGS VS_FF_DEBUG
+//#else
+// FILEFLAGS 0x0L
+#endif
+
+ FILEOS VOS__WINDOWS32
+ FILETYPE VFT_DLL
+ FILESUBTYPE VFT2_UNKNOWN
+BEGIN
+ BLOCK "StringFileInfo"
+ BEGIN
+ BLOCK "000004b0" // LOCALE_NEUTRAL<<16 + 1200 (ANSI - Unicode)
+ BEGIN
+ VALUE "Author", __AUTHOR
+ VALUE "FileDescription", __DESC
+ VALUE "InternalName", __PLUGIN_NAME
+ VALUE "LegalCopyright", __COPYRIGHT
+ VALUE "OriginalFilename", __FILENAME
+ VALUE "FileVersion", __VERSION_STRING
+ VALUE "ProductName", "Miranda NG"
+ VALUE "ProductVersion", __PROD_VERSION_STRING
+ END
+ END
+ BLOCK "VarFileInfo"
+ BEGIN
+ VALUE "Translation", /*LOCALE_NEUTRAL from WinNT.h */ 0x0, 1200
+ END
+END