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#pragma code_page(65001) /* UTF-8 */ 10 11#ifdef LANGUAGE_DE_DE 12 #include "lang/de-DE.rc" 13#endif 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_TR_TR 21 #include "lang/tr-TR.rc" 22#endif 23#ifdef LANGUAGE_ZH_TW 24 #include "lang/zh-TW.rc" 25#endif 26