1#include <windef.h> 2 3#include "resource.h" 4 5#define REACTOS_STR_FILE_DESCRIPTION "Disk Partitioning Tool" 6#define REACTOS_STR_INTERNAL_NAME "diskpart" 7#define REACTOS_STR_ORIGINAL_FILENAME "diskpart.exe" 8#define REACTOS_STR_ORIGINAL_COPYRIGHT "(C) 2011 Lee Schroeder" 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_PL_PL 18 #include "lang/pl-PL.rc" 19#endif 20#ifdef LANGUAGE_RO_RO 21 #include "lang/ro-RO.rc" 22#endif 23#ifdef LANGUAGE_RU_RU 24 #include "lang/ru-RU.rc" 25#endif 26#ifdef LANGUAGE_SQ_AL 27 #include "lang/sq-AL.rc" 28#endif 29#ifdef LANGUAGE_TR_TR 30 #include "lang/tr-TR.rc" 31#endif 32#ifdef LANGUAGE_ZH_CN 33 #include "lang/zh-CN.rc" 34#endif 35#ifdef LANGUAGE_ZH_TW 36 #include "lang/zh-TW.rc" 37#endif