1/*
2 * WineMine (rsrc.rc)
3 *
4 * Copyright 2000 Joshua Thielen
5 * Copyright 2003 Marcelo Duarte
6 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20 */
21
22#include <windef.h>
23#include <winuser.h>
24
25#include "resource.h"
26
27LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
28
29IDA_WINEMINE ACCELERATORS
30BEGIN
31    VK_F2, IDM_NEW, VIRTKEY, NOINVERT
32    "X", IDM_EXIT, VIRTKEY, ALT, NOINVERT
33END
34
35/* @makedep: winemine.ico */
36IDI_WINEMINE ICON "rc/winemine.ico"
37
38/* @makedep: faces.bmp */
39IDI_FACES BITMAP "rc/faces.bmp"
40
41/* @makedep: leds.bmp */
42IDI_LEDS BITMAP "rc/leds.bmp"
43
44/* @makedep: mines.bmp */
45IDI_MINES BITMAP "rc/mines.bmp"
46
47#include <reactos/manifest_exe.rc>
48
49/* include localised resources */
50
51/* UTF-8 */
52#pragma code_page(65001)
53
54#ifdef LANGUAGE_BG_BG
55    #include "lang/bg-BG.rc"
56#endif
57#ifdef LANGUAGE_CS_CZ
58    #include "lang/cs-CZ.rc"
59#endif
60#ifdef LANGUAGE_DA_DK
61    #include "lang/da-DK.rc"
62#endif
63#ifdef LANGUAGE_DE_DE
64    #include "lang/de-DE.rc"
65#endif
66#ifdef LANGUAGE_EN_US
67    #include "lang/en-US.rc"
68#endif
69#ifdef LANGUAGE_ES_ES
70    #include "lang/es-ES.rc"
71#endif
72#ifdef LANGUAGE_FI_FI
73    #include "lang/fi-FI.rc"
74#endif
75#ifdef LANGUAGE_FR_FR
76    #include "lang/fr-FR.rc"
77#endif
78#ifdef LANGUAGE_HE_IL
79    #include "lang/he-IL.rc"
80#endif
81#ifdef LANGUAGE_HU_HU
82    #include "lang/hu-HU.rc"
83#endif
84#ifdef LANGUAGE_ID_ID
85    #include "lang/id-ID.rc"
86#endif
87#ifdef LANGUAGE_IT_IT
88    #include "lang/it-IT.rc"
89#endif
90#ifdef LANGUAGE_JA_JP
91    #include "lang/ja-JP.rc"
92#endif
93#ifdef LANGUAGE_KO_KR
94    #include "lang/ko-KR.rc"
95#endif
96#ifdef LANGUAGE_LT_LT
97    #include "lang/lt-LT.rc"
98#endif
99#ifdef LANGUAGE_NL_NL
100    #include "lang/nl-NL.rc"
101#endif
102#ifdef LANGUAGE_NB_NO
103    #include "lang/no-NO.rc"
104#endif
105#ifdef LANGUAGE_PL_PL
106    #include "lang/pl-PL.rc"
107#endif
108#ifdef LANGUAGE_PT_PT
109    #include "lang/pt-PT.rc"
110#endif
111#ifdef LANGUAGE_RO_RO
112    #include "lang/ro-RO.rc"
113#endif
114#ifdef LANGUAGE_RU_RU
115    #include "lang/ru-RU.rc"
116#endif
117#ifdef LANGUAGE_SL_SI
118    #include "lang/sl-SI.rc"
119#endif
120#ifdef LANGUAGE_SQ_AL
121    #include "lang/sq-AL.rc"
122#endif
123#ifdef LANGUAGE_SV_SE
124    #include "lang/sv-SE.rc"
125#endif
126#ifdef LANGUAGE_TR_TR
127    #include "lang/tr-TR.rc"
128#endif
129#ifdef LANGUAGE_UK_UA
130    #include "lang/uk-UA.rc"
131#endif
132#ifdef LANGUAGE_ZH_CN
133    #include "lang/zh-CN.rc"
134#endif
135#ifdef LANGUAGE_ZH_TW
136    #include "lang/zh-TW.rc"
137#endif
138