mirror of
https://github.com/rizonesoft/Notepad3.git
synced 2026-06-20 21:13:25 +08:00
38 lines
1.0 KiB
Plaintext
38 lines
1.0 KiB
Plaintext
// 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.5"
|
|
#define VERSION_WORDS 4, 4, 5, 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.lib - 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.lib\0"
|
|
VALUE "ProductName", "Lexilla\0"
|
|
VALUE "ProductVersion", VERSION_LEXILLA "\0"
|
|
END
|
|
END
|
|
END
|