forked from XhmikosR/notepad2-mod
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNotepad2.ver
More file actions
61 lines (57 loc) · 1.64 KB
/
Notepad2.ver
File metadata and controls
61 lines (57 loc) · 1.64 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/******************************************************************* mode:rc **
*
*
* Notepad2
*
* Notepad2.ver
* Notepad2 version information
*
* See Readme.txt for more information about this source code.
* Please send me your comments to this work.
*
* See License.txt for details about distribution and modification.
*
* (c) Florian Balmer 1996-2011
* florian.balmer@gmail.com
* http://www.flos-freeware.ch
*
*
******************************************************************************/
#include "version.h"
#ifdef _WIN32
LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
#pragma code_page(1252)
#endif //_WIN32
VS_VERSION_INFO VERSIONINFO
FILEVERSION VERSION_FILEVERSION_NUM
PRODUCTVERSION VERSION_FILEVERSION_NUM
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS VS_FF_PATCHED | VS_FF_DEBUG
#else
FILEFLAGS VS_FF_PATCHED
#endif
FILEOS 0x4L
FILETYPE 0x1L
FILESUBTYPE 0x0L
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904b0"
BEGIN
VALUE "Comments", MY_APPNAME
VALUE "FileDescription", MY_APPNAME
VALUE "InternalName", MY_APPNAME
VALUE "ProductName", MY_APPNAME
VALUE "CompanyName", VERSION_COMPANYNAME
VALUE "FileVersion", VERSION_FILEVERSION
VALUE "ProductVersion", VERSION_FILEVERSION
VALUE "LegalCopyright", VERSION_LEGALCOPYRIGHT_LONG
VALUE "OriginalFilename", "Notepad2.exe"
END
END
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x409, 1200
END
END