-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBeebview.rc
59 lines (49 loc) · 1.53 KB
/
Beebview.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
57
58
59
/*
* Copyright © 1999-2000 David Robinson
* Copyright © 2007-2016 Matt Robinson
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
#include "windows.h"
#pragma code_page(65001)
/////////////////////////////////////////////////////////////////////////////
// English (U.K.) resources
#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENG)
LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_UK
/////////////////////////////////////////////////////////////////////////////
//
// Icon
//
1 ICON "Graphics\Beebview.ico"
/////////////////////////////////////////////////////////////////////////////
//
// Version Info
//
1 VERSIONINFO
FILEVERSION 2,0,0,0
PRODUCTVERSION 2,0,0,0
FILEOS 0x4
FILETYPE 0x1
{
BLOCK "StringFileInfo"
{
BLOCK "080904b0"
{
VALUE "Comments", "View and save graphics files originally created on BBC Micro or Master Computers."
VALUE "CompanyName", "nerdoftheherd.com"
VALUE "FileDescription", "BBC Graphics Viewer"
VALUE "FileVersion", "2.0"
VALUE "InternalName", "beebview.exe"
VALUE "LegalCopyright", "Copyright © 1999-" BEEBVIEW_COMMIT_YEAR
VALUE "OriginalFilename", "beebview.exe"
VALUE "ProductName", "BBC Graphics Viewer"
VALUE "ProductVersion", BEEBVIEW_VERSION
}
}
BLOCK "VarFileInfo"
{
VALUE "Translation", 0x0809 0x04B0
}
}
#endif // English (U.K.) resources
/////////////////////////////////////////////////////////////////////////////