1#include <windef.h> 2#include <winuser.h> 3#include <richedit.h> 4 5#include "resource.h" 6 7LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL 8 9IDI_ICON ICON "res/charmap.ico" 10 11#define REACTOS_STR_FILE_DESCRIPTION "ReactOS Character Map" 12#define REACTOS_STR_INTERNAL_NAME "charmap" 13#define REACTOS_STR_ORIGINAL_FILENAME "charmap.exe" 14//#include <reactos/version.rc> 15 16//#include <reactos/manifest_exe.rc> 17 18/* UTF-8 */ 19#pragma code_page(65001) 20 21#ifdef LANGUAGE_EN_US 22 #include "lang/en-US.rc" 23#endif 24#ifdef LANGUAGE_ES_ES 25 #include "lang/es-ES.rc" 26#endif 27#ifdef LANGUAGE_ET-EE 28 #include "lang/et-EE.rc" 29#endif 30#ifdef LANGUAGE_EU_ES 31 #include "lang/eu-ES.rc" 32#endif 33#ifdef LANGUAGE_IT_IT 34 #include "lang/it-IT.rc" 35#endif 36#ifdef LANGUAGE_PL_PL 37 #include "lang/pl-PL.rc" 38#endif 39#ifdef LANGUAGE_RO_RO 40 #include "lang/ro-RO.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