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 11/* UTF-8 */ 12#pragma code_page(65001) 13 14#ifdef LANGUAGE_EN_US 15 #include "lang/en-US.rc" 16#endif 17#ifdef LANGUAGE_IT_IT 18 #include "lang/it-IT.rc" 19#endif 20#ifdef LANGUAGE_PL_PL 21 #include "lang/pl-PL.rc" 22#endif 23#ifdef LANGUAGE_RO_RO 24 #include "lang/ro-RO.rc" 25#endif 26#ifdef LANGUAGE_TR_TR 27 #include "lang/tr-TR.rc" 28#endif 29