aboutsummaryrefslogtreecommitdiffhomepage
path: root/lexilla/src/LexillaVersion.rc
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2020-01-26 08:15:50 +1100
committerNeil <nyamatongwe@gmail.com>2020-01-26 08:15:50 +1100
commita89841e67888a43625c91e9bf8d6a1ef2ac4f2c4 (patch)
treefaebc8e3ffacf12e5d0a5890cb7c5f6cd8d85d2d /lexilla/src/LexillaVersion.rc
parentb6706ed7be03e06a9c2cce349ff19eb95055c6bd (diff)
downloadscintilla-mirror-a89841e67888a43625c91e9bf8d6a1ef2ac4f2c4.tar.gz
Add version information resource to Lexilla.DLL on Win32.
Lexilla and Scintilla currently share a version number but they may diverge in the future.
Diffstat (limited to 'lexilla/src/LexillaVersion.rc')
-rw-r--r--lexilla/src/LexillaVersion.rc37
1 files changed, 37 insertions, 0 deletions
diff --git a/lexilla/src/LexillaVersion.rc b/lexilla/src/LexillaVersion.rc
new file mode 100644
index 000000000..47a60b731
--- /dev/null
+++ b/lexilla/src/LexillaVersion.rc
@@ -0,0 +1,37 @@
+// Resource file for Lexilla - provides a version number
+// Copyright 2020 by Neil Hodgson <neilh@scintilla.org>
+// The License.txt file describes the conditions under which this software may be distributed.
+
+#include <windows.h>
+
+#define VERSION_LEXILLA "4.3.0"
+#define VERSION_WORDS 4, 3, 0, 0
+
+VS_VERSION_INFO VERSIONINFO
+FILEVERSION VERSION_WORDS
+PRODUCTVERSION VERSION_WORDS
+FILEFLAGSMASK 0x3fL
+FILEFLAGS 0
+FILEOS VOS_NT_WINDOWS32
+FILETYPE VFT_APP
+FILESUBTYPE VFT2_UNKNOWN
+BEGIN
+ BLOCK "VarFileInfo"
+ BEGIN
+ VALUE "Translation", 0x409, 1200
+ END
+ BLOCK "StringFileInfo"
+ BEGIN
+ BLOCK "040904b0"
+ BEGIN
+ VALUE "CompanyName", "Neil Hodgson neilh@scintilla.org\0"
+ VALUE "FileDescription", "Lexilla.DLL - a Lexical Analysis Component\0"
+ VALUE "FileVersion", VERSION_LEXILLA "\0"
+ VALUE "InternalName", "Lexilla\0"
+ VALUE "LegalCopyright", "Copyright 2019 by Neil Hodgson\0"
+ VALUE "OriginalFilename", "Lexilla.DLL\0"
+ VALUE "ProductName", "Lexilla\0"
+ VALUE "ProductVersion", VERSION_LEXILLA "\0"
+ END
+ END
+END