1#include <windows.h> 2#include "resource.h" 3 4LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL 5 6IDI_ICON ICON DISCARDABLE "res/icon_mazescr.ico" 7 8#define REACTOS_VERSION_DLL 9#define REACTOS_STR_FILE_DESCRIPTION "Maze ScreenSaver\0" 10#define REACTOS_STR_INTERNAL_NAME "Maze\0" 11#define REACTOS_STR_ORIGINAL_FILENAME "mazescr.scr\0" 12 13#include <reactos/version.rc> 14 15#include <reactos/manifest_exe.rc> 16 17#ifndef IDC_STATIC 18#define IDC_STATIC -1 19#endif 20 21/* UTF-8 */ 22#pragma code_page(65001) 23 24#ifdef LANGUAGE_DE_DE 25 #include "lang/de-DE.rc" 26#endif 27#ifdef LANGUAGE_EN_US 28 #include "lang/en-US.rc" 29#endif 30#ifdef LANGUAGE_ES_ES 31 #include "lang/es-ES.rc" 32#endif 33#ifdef LANGUAGE_PL_PL 34 #include "lang/pl-PL.rc" 35#endif 36#ifdef LANGUAGE_RO_RO 37 #include "lang/ro-RO.rc" 38#endif 39#ifdef LANGUAGE_RU_RU 40 #include "lang/ru-RU.rc" 41#endif 42#ifdef LANGUAGE_TR_TR 43 #include "lang/tr-TR.rc" 44#endif 45#ifdef LANGUAGE_ZH_CN 46 #include "lang/zh-CN.rc" 47#endif 48#ifdef LANGUAGE_ZH_HK 49 #include "lang/zh-HK.rc" 50#endif 51#ifdef LANGUAGE_ZH_TW 52 #include "lang/zh-TW.rc" 53#endif 54