1#include <windef.h> 2 3#include "resource.h" 4 5#define REACTOS_VERSION_DLL 6#define REACTOS_STR_FILE_DESCRIPTION "ReactOS Font Folder" 7#define REACTOS_STR_INTERNAL_NAME "fontext" 8#define REACTOS_STR_ORIGINAL_FILENAME "fontext.dll" 9#include <reactos/version.rc> 10 11IDR_FONTEXT REGISTRY "res/fontext.rgs" 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_IT_IT 20 #include "lang/it-IT.rc" 21#endif 22#ifdef LANGUAGE_PL_PL 23 #include "lang/pl-PL.rc" 24#endif 25#ifdef LANGUAGE_RO_RO 26 #include "lang/ro-RO.rc" 27#endif 28#ifdef LANGUAGE_TR_TR 29 #include "lang/tr-TR.rc" 30#endif 31