Reactos
at master 29 lines 624 B view raw
1#include <windef.h> 2#include "resource.h" 3 4#define REACTOS_STR_FILE_DESCRIPTION "ReactOS WHERE Command" 5#define REACTOS_STR_INTERNAL_NAME "where" 6#define REACTOS_STR_ORIGINAL_FILENAME "where.exe" 7#include <reactos/version.rc> 8 9/* UTF-8 */ 10#pragma code_page(65001) 11 12#ifdef LANGUAGE_DE_DE 13 #include "lang/de-DE.rc" 14#endif 15#ifdef LANGUAGE_EN_US 16 #include "lang/en-US.rc" 17#endif 18#ifdef LANGUAGE_IT_IT 19 #include "lang/it-IT.rc" 20#endif 21#ifdef LANGUAGE_PL_PL 22 #include "lang/pl-PL.rc" 23#endif 24#ifdef LANGUAGE_TR_TR 25 #include "lang/tr-TR.rc" 26#endif 27#ifdef LANGUAGE_ZH_TW 28 #include "lang/zh-TW.rc" 29#endif