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 30{ 31 VK_F2, IDM_NEW, VIRTKEY, NOINVERT 32 "X", IDM_EXIT, VIRTKEY, ALT, NOINVERT 33} 34 35/* @makedep: winemine.ico */ 36WINEMINE ICON rc/winemine.ico 37 38/* @makedep: faces.bmp */ 39FACES BITMAP rc/faces.bmp 40 41/* @makedep: leds.bmp */ 42LEDS BITMAP rc/leds.bmp 43 44/* @makedep: mines.bmp */ 45MINES BITMAP rc/mines.bmp 46 47/* include localised resources */ 48// UTF-8 49#pragma code_page(65001) 50 51#ifdef LANGUAGE_BG_BG 52 #include "lang/bg-BG.rc" 53#endif 54#ifdef LANGUAGE_CS_CZ 55 #include "lang/cs-CZ.rc" 56#endif 57#ifdef LANGUAGE_DA_DK 58 #include "lang/da-DK.rc" 59#endif 60#ifdef LANGUAGE_DE_DE 61 #include "lang/de-DE.rc" 62#endif 63#ifdef LANGUAGE_EN_US 64 #include "lang/en-US.rc" 65#endif 66#ifdef LANGUAGE_ES_ES 67 #include "lang/es-ES.rc" 68#endif 69#ifdef LANGUAGE_FI_FI 70 #include "lang/fi-FI.rc" 71#endif 72#ifdef LANGUAGE_FR_FR 73 #include "lang/fr-FR.rc" 74#endif 75#ifdef LANGUAGE_HE_IL 76 #include "lang/he-IL.rc" 77#endif 78#ifdef LANGUAGE_IT_IT 79 #include "lang/it-IT.rc" 80#endif 81#ifdef LANGUAGE_JA_JP 82 #include "lang/ja-JP.rc" 83#endif 84#ifdef LANGUAGE_KO_KR 85 #include "lang/ko-KR.rc" 86#endif 87#ifdef LANGUAGE_LT_LT 88 #include "lang/lt-LT.rc" 89#endif 90#ifdef LANGUAGE_NL_NL 91 #include "lang/nl-NL.rc" 92#endif 93#ifdef LANGUAGE_NB_NO 94 #include "lang/no-NO.rc" 95#endif 96#ifdef LANGUAGE_PL_PL 97 #include "lang/pl-PL.rc" 98#endif 99#ifdef LANGUAGE_PT_PT 100 #include "lang/pt-PT.rc" 101#endif 102#ifdef LANGUAGE_RO_RO 103 #include "lang/ro-RO.rc" 104#endif 105#ifdef LANGUAGE_RU_RU 106 #include "lang/ru-RU.rc" 107#endif 108#ifdef LANGUAGE_SL_SI 109 #include "lang/sl-SI.rc" 110#endif 111#ifdef LANGUAGE_SV_SE 112 #include "lang/sv-SE.rc" 113#endif 114#ifdef LANGUAGE_TR_TR 115 #include "lang/tr-TR.rc" 116#endif 117#ifdef LANGUAGE_UK_UA 118 #include "lang/uk-UA.rc" 119#endif 120#ifdef LANGUAGE_ZH_CN 121 #include "lang/zh-CN.rc" 122#endif 123#ifdef LANGUAGE_ZH_TW 124 #include "lang/zh-TW.rc" 125#endif 126