1#include <windef.h> 2 3#include "resource.h" 4 5LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL 6 7#define REACTOS_STR_FILE_DESCRIPTION "ReactOS File Download Utility" 8#define REACTOS_STR_INTERNAL_NAME "dwnl" 9#define REACTOS_STR_ORIGINAL_FILENAME "dwnl.exe" 10#include <reactos/version.rc> 11 12/* UTF-8 */ 13#pragma code_page(65001) 14#ifdef LANGUAGE_DE_DE 15 #include "lang/de-DE.rc" 16#endif 17#ifdef LANGUAGE_EN_US 18 #include "lang/en-US.rc" 19#endif 20#ifdef LANGUAGE_FR_FR 21 #include "lang/fr-FR.rc" 22#endif 23#ifdef LANGUAGE_IT_IT 24 #include "lang/it-IT.rc" 25#endif 26#ifdef LANGUAGE_PL_PL 27 #include "lang/pl-PL.rc" 28#endif 29#ifdef LANGUAGE_RO_RO 30 #include "lang/ro-RO.rc" 31#endif 32#ifdef LANGUAGE_RU_RU 33 #include "lang/ru-RU.rc" 34#endif 35