1 2#include <windows.h> 3#include "resource.h" 4 5#define REACTOS_STR_FILE_DESCRIPTION "ReactOS Console Task Manager\0" 6#define REACTOS_STR_INTERNAL_NAME "ctm\0" 7#define REACTOS_STR_ORIGINAL_FILENAME "ctm.exe\0" 8#define REACTOS_STR_ORIGINAL_COPYRIGHT "2003, Aleksey Bragin\0" 9#include <reactos/version.rc> 10 11/* UTF-8 */ 12#pragma code_page(65001) 13 14#ifdef LANGUAGE_DE_DE 15 #include "lang/de-DE.rc" 16#endif 17#ifdef LANGUAGE_EL_GR 18 #include "lang/el-GR.rc" 19#endif 20#ifdef LANGUAGE_EN_US 21 #include "lang/en-US.rc" 22#endif 23#ifdef LANGUAGE_ES_ES 24 #include "lang/es-ES.rc" 25#endif 26#ifdef LANGUAGE_FR_FR 27 #include "lang/fr-FR.rc" 28#endif 29#ifdef LANGUAGE_NO_NO 30 #include "lang/no-NO.rc" 31#endif 32#ifdef LANGUAGE_PL_PL 33 #include "lang/pl-PL.rc" 34#endif 35#ifdef LANGUAGE_RO_RO 36 #include "lang/ro-RO.rc" 37#endif 38#ifdef LANGUAGE_RU_RU 39 #include "lang/ru-RU.rc" 40#endif 41#ifdef LANGUAGE_UK_UA 42 #include "lang/uk-UA.rc" 43#endif 44