1#include <windef.h> 2#include "resource.h" 3 4LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL 5 6#define REACTOS_STR_FILE_DESCRIPTION "Console Telnet for Win32" 7#define REACTOS_STR_INTERNAL_NAME "telnet" 8#define REACTOS_STR_ORIGINAL_FILENAME "telnet.exe" 9#include <reactos/version.rc> 10 11IDI_APPICON ICON "telnet.ico" 12 13/* UTF-8 */ 14#pragma code_page(65001) 15 16#ifdef LANGUAGE_EN_US 17 #include "lang/en-US.rc" 18#endif 19#ifdef LANGUAGE_PL_PL 20 #include "lang/pl-PL.rc" 21#endif 22#ifdef LANGUAGE_RO_RO 23 #include "lang/ro-RO.rc" 24#endif 25#ifdef LANGUAGE_RU_RU 26 #include "lang/ru-RU.rc" 27#endif 28#ifdef LANGUAGE_TR_TR 29 #include "lang/tr-TR.rc" 30#endif 31#ifdef LANGUAGE_ZH_CN 32 #include "lang/zh-CN.rc" 33#endif 34