forked from Yuri213212/tetris
-
Notifications
You must be signed in to change notification settings - Fork 0
/
resource.rc
76 lines (67 loc) · 1.45 KB
/
resource.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#include <windows.h>
#ifdef LANG_CH
#ifdef NOUTF8
#include "lang-ch/resource_gb2312.h"
#else
#pragma code_page(65001)
#include "lang-ch/resource.h"
#endif
#elif defined LANG_JP
#ifdef NOUTF8
#include "lang-jp/resource_sjis.h"
#else
#pragma code_page(65001)
#include "lang-jp/resource.h"
#endif
#else
#include "lang/resource.h"
#endif
//
// Version Information
//
VS_VERSION_INFO VERSIONINFO
FILEVERSION 1, 1, 0, 0
FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
FILEFLAGS 0
FILEOS VOS_NT_WINDOWS32
FILETYPE VFT_APP
{
BLOCK "StringFileInfo"
{
BLOCK "040904b0"
{
VALUE "FileDescription", "Tetris in handheld game console\0"
VALUE "FileVersion", "1.1\0"
VALUE "InternalName", "tetris\0"
VALUE "LegalCopyright", "Copyright (C) 2021 Yuri213212 (CC BY-NC-SA 4.0)\0"
VALUE "ProductName", "tetris\0"
VALUE "ProductVersion", "1.1\0"
}
}
BLOCK "VarFileInfo"
{
#ifdef LANG_CH
VALUE "Translation", 0x804, 1200
#elif defined LANG_JP
VALUE "Translation", 0x411, 1200
#else
VALUE "Translation", 0x409, 1200
#endif
}
}
//
// Menu
//
menu MENU
{
MENUITEM MENU_RESET, IDM_RESET
MENUITEM MENU_START, IDM_START
MENUITEM MENU_PAUSE, IDM_PAUSE
MENUITEM MENU_HELP, IDM_HELP
}
//
// Manifest for PC platforms (high DPI and common controls version 6)
//
#ifndef UNDER_CE
1 MANIFEST app.manifest
#endif