-
Notifications
You must be signed in to change notification settings - Fork 0
/
linecnt.rc
56 lines (49 loc) · 1.56 KB
/
linecnt.rc
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
/*
linecnt - a source line counting utility
Copyright (c) 2003-2021, Stone Steps Inc. (www.stonesteps.ca)
See COPYING and Copyright files for additional licensing and copyright information
*/
#define STRICT
#include "version.h"
#pragma code_page(1252)
#define RC_STRING(value) #value
#define RC_STRING_EX(value) RC_STRING(value)
#define RC_VERSION VERSION_MAJOR,VERSION_MINOR,VERSION_PATCH,BUILD_NUMBER
#define RC_VERSION_STR RC_STRING_EX(RC_VERSION)
#define VS_VERSION_INFO 1
VS_VERSION_INFO VERSIONINFO
FILEVERSION RC_VERSION
PRODUCTVERSION RC_VERSION
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x29L
#else
FILEFLAGS 0x28L
#endif
FILEOS 0x40004L
FILETYPE 0x1L
FILESUBTYPE 0x0L
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904b0"
BEGIN
VALUE "Comments", "\0"
VALUE "CompanyName", "Stone Steps Inc.\0"
VALUE "FileDescription", "Line counting utility\0"
VALUE "FileVersion", RC_VERSION_STR
VALUE "InternalName", "linecnt.exe\0"
VALUE "LegalCopyright", "Copyright © 2003-2021 Stone Steps Inc.\0"
VALUE "LegalTrademarks", "\0"
VALUE "OriginalFilename", "linecnt.exe\0"
VALUE "PrivateBuild", " \0"
VALUE "ProductName", "linecnt.exe\0"
VALUE "ProductVersion", RC_VERSION_STR
VALUE "SpecialBuild", "\0"
END
END
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x409, 1200
END
END