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
29#define REACTOS_STR_FILE_DESCRIPTION  "ReactOS WineMine Game"
30#define REACTOS_STR_INTERNAL_NAME     "winmine"
31#define REACTOS_STR_ORIGINAL_FILENAME "winmine.exe"
32#include <reactos/version.rc>
33
34IDA_WINEMINE ACCELERATORS
35BEGIN
36    VK_F2, IDM_NEW, VIRTKEY, NOINVERT
37    "X", IDM_EXIT, VIRTKEY, ALT, NOINVERT
38END
39
40/* @makedep: winemine.ico */
41IDI_WINEMINE ICON "rc/winemine.ico"
42
43/* @makedep: faces.bmp */
44IDI_FACES BITMAP "rc/faces.bmp"
45
46/* @makedep: leds.bmp */
47IDI_LEDS BITMAP "rc/leds.bmp"
48
49/* @makedep: mines.bmp */
50IDI_MINES BITMAP "rc/mines.bmp"
51
52/* Sound effects */
53IDW_BOX WAVE "rc/box.wav"
54IDW_FLAG WAVE "rc/flag.wav"
55IDW_QUESTION WAVE "rc/question.wav"
56IDW_EXPLODE WAVE "rc/explode.wav"
57IDW_WIN WAVE "rc/win.wav"
58
59#include <reactos/manifest_exe.rc>
60
61/* include localised resources */
62
63/* UTF-8 */
64#pragma code_page(65001)
65
66#ifdef LANGUAGE_BG_BG
67    #include "lang/bg-BG.rc"
68#endif
69#ifdef LANGUAGE_CS_CZ
70    #include "lang/cs-CZ.rc"
71#endif
72#ifdef LANGUAGE_DA_DK
73    #include "lang/da-DK.rc"
74#endif
75#ifdef LANGUAGE_DE_DE
76    #include "lang/de-DE.rc"
77#endif
78#ifdef LANGUAGE_EN_US
79    #include "lang/en-US.rc"
80#endif
81#ifdef LANGUAGE_ES_ES
82    #include "lang/es-ES.rc"
83#endif
84#ifdef LANGUAGE_FI_FI
85    #include "lang/fi-FI.rc"
86#endif
87#ifdef LANGUAGE_FR_FR
88    #include "lang/fr-FR.rc"
89#endif
90#ifdef LANGUAGE_HE_IL
91    #include "lang/he-IL.rc"
92#endif
93#ifdef LANGUAGE_HU_HU
94    #include "lang/hu-HU.rc"
95#endif
96#ifdef LANGUAGE_ID_ID
97    #include "lang/id-ID.rc"
98#endif
99#ifdef LANGUAGE_IT_IT
100    #include "lang/it-IT.rc"
101#endif
102#ifdef LANGUAGE_JA_JP
103    #include "lang/ja-JP.rc"
104#endif
105#ifdef LANGUAGE_KO_KR
106    #include "lang/ko-KR.rc"
107#endif
108#ifdef LANGUAGE_LT_LT
109    #include "lang/lt-LT.rc"
110#endif
111#ifdef LANGUAGE_NL_NL
112    #include "lang/nl-NL.rc"
113#endif
114#ifdef LANGUAGE_NB_NO
115    #include "lang/no-NO.rc"
116#endif
117#ifdef LANGUAGE_PL_PL
118    #include "lang/pl-PL.rc"
119#endif
120#ifdef LANGUAGE_PT_PT
121    #include "lang/pt-PT.rc"
122#endif
123#ifdef LANGUAGE_RO_RO
124    #include "lang/ro-RO.rc"
125#endif
126#ifdef LANGUAGE_RU_RU
127    #include "lang/ru-RU.rc"
128#endif
129#ifdef LANGUAGE_SL_SI
130    #include "lang/sl-SI.rc"
131#endif
132#ifdef LANGUAGE_SQ_AL
133    #include "lang/sq-AL.rc"
134#endif
135#ifdef LANGUAGE_SV_SE
136    #include "lang/sv-SE.rc"
137#endif
138#ifdef LANGUAGE_TR_TR
139    #include "lang/tr-TR.rc"
140#endif
141#ifdef LANGUAGE_UK_UA
142    #include "lang/uk-UA.rc"
143#endif
144#ifdef LANGUAGE_ZH_CN
145    #include "lang/zh-CN.rc"
146#endif
147#ifdef LANGUAGE_ZH_HK
148    #include "lang/zh-HK.rc"
149#endif
150#ifdef LANGUAGE_ZH_TW
151    #include "lang/zh-TW.rc"
152#endif
153