1/*
2 * ReactOS Starfield (global resource file)
3 *
4 * Copyright 2011, Carlo Bramini
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
19 */
20
21#include <windows.h>
22#include <scrnsave.h>
23
24#include "resource.h"
25
26#ifndef IDC_STATIC
27#define IDC_STATIC    -1
28#endif
29
30// Common resources
31
32LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
33
34// Icons
35IDI_STARFIELD           ICON    DISCARDABLE     "res/icon_stars.ico"
36
37// Bitmap
38
39IDB_COSMOS              BITMAP  DISCARDABLE     "res/cosmicfractal.bmp"
40IDB_STAR                BITMAP  DISCARDABLE     "res/star.bmp"
41
42#include <reactos/manifest_exe.rc>
43
44// Language resources
45/* UTF-8 */
46#pragma code_page(65001)
47
48#ifdef LANGUAGE_DE_DE
49    #include "lang/de-DE.rc"
50#endif
51#ifdef LANGUAGE_EN_US
52    #include "lang/en-US.rc"
53#endif
54#ifdef LANGUAGE_ES_ES
55    #include "lang/es-ES.rc"
56#endif
57#ifdef LANGUAGE_IT_IT
58    #include "lang/it-IT.rc"
59#endif
60#ifdef LANGUAGE_PL_PL
61    #include "lang/pl-PL.rc"
62#endif
63#ifdef LANGUAGE_RO_RO
64    #include "lang/ro-RO.rc"
65#endif
66#ifdef LANGUAGE_RU_RU
67    #include "lang/ru-RU.rc"
68#endif
69#ifdef LANGUAGE_ZH_CN
70    #include "lang/zh-CN.rc"
71#endif
72#ifdef LANGUAGE_ZH_HK
73    #include "lang/zh-HK.rc"
74#endif
75#ifdef LANGUAGE_ZH_TW
76    #include "lang/zh-TW.rc"
77#endif
78