diff options
| author | mataes2007 <mataes2007@e753b5eb-9565-29b2-b5c5-2cc6f99dfbcb> | 2011-11-23 18:16:39 +0000 |
|---|---|---|
| committer | mataes2007 <mataes2007@e753b5eb-9565-29b2-b5c5-2cc6f99dfbcb> | 2011-11-23 18:16:39 +0000 |
| commit | 59e53cb6cad99051eb3e46b919fd78ab7493061d (patch) | |
| tree | ce1aad2ae099649dc8a07c219c83a829545b313f /Help/version.rc | |
| parent | 72c858d136d42fccd422620542b9c73808f16ae8 (diff) | |
added Help plugin
git-svn-id: http://miranda-plugins.googlecode.com/svn/trunk@201 e753b5eb-9565-29b2-b5c5-2cc6f99dfbcb
Diffstat (limited to 'Help/version.rc')
| -rw-r--r-- | Help/version.rc | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/Help/version.rc b/Help/version.rc new file mode 100644 index 0000000..5568808 --- /dev/null +++ b/Help/version.rc @@ -0,0 +1,51 @@ +#ifndef _MAC
+
+#include "version.h"
+
+/////////////////////////////////////////////////////////////////////////////
+//
+// Version
+//
+
+VS_VERSION_INFO VERSIONINFO
+ FILEVERSION FILE_VERSION
+ PRODUCTVERSION FILE_VERSION
+ FILEFLAGSMASK 0x0L
+#ifdef _DEBUG
+ FILEFLAGS 0x1L
+#else
+ FILEFLAGS 0x0L
+#endif
+ FILEOS 0x40004L
+ FILETYPE 0x2L
+ FILESUBTYPE 0x0L
+BEGIN
+ BLOCK "StringFileInfo"
+ BEGIN
+ BLOCK "000004b0"
+ BEGIN
+ VALUE "Comments", "Licensed under the terms of the GNU General Public License"
+ VALUE "FileDescription", "Help Plugin for Miranda IM"
+ VALUE "FileVersion", FILE_VERSION_STR
+#ifdef _UNICODE
+ VALUE "InternalName", "HelpPlugin (Unicode)"
+#else
+ VALUE "InternalName", "HelpPlugin"
+#endif
+ VALUE "LegalCopyright", "Copyright © Richard Hughes, H. Herkenrath"
+ VALUE "OriginalFilename", "help.dll"
+ VALUE "ProductName", "Help"
+ VALUE "ProductVersion", FILE_VERSION_STR
+ END
+ END
+ BLOCK "VarFileInfo"
+ BEGIN
+ VALUE "Translation", 0x0, 1200
+ END
+END
+
+#endif // !_MAC
+
+
+
+
|
