blob: f7abb49a32120066e62118f44a3b6ee15559ff83 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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.4.0"
#define VERSION_WORDS 4, 4, 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
|