1/* 2 * PROJECT: Dr. Watson crash reporter 3 * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+) 4 * PURPOSE: Main resource file 5 * COPYRIGHT: Copyright 2018 William Kent (wjk011 [at] gmail [dot] com) 6 */ 7 8#include <windef.h> 9#include <winuser.h> 10#include "resource.h" 11 12#define REACTOS_STR_FILE_DESCRIPTION "ReactOS Crash Reporter" 13#define REACTOS_STR_INTERNAL_NAME "drwtsn32" 14#define REACTOS_STR_ORIGINAL_FILENAME "drwtsn32.exe" 15#include <reactos/version.rc> 16 17#include <reactos/manifest_exe.rc> 18 19/* UTF-8 */ 20#pragma code_page(65001) 21 22#ifdef LANGUAGE_DE_DE 23 #include "lang/de-DE.rc" 24#endif 25#ifdef LANGUAGE_EN_US 26 #include "lang/en-US.rc" 27#endif 28#ifdef LANGUAGE_ES_ES 29 #include "lang/es-ES.rc" 30#endif 31#ifdef LANGUAGE_ET_EE 32 #include "lang/et-EE.rc" 33#endif 34#ifdef LANGUAGE_FR_FR 35 #include "lang/fr-FR.rc" 36#endif 37#ifdef LANGUAGE_ID_ID 38 #include "lang/id-ID.rc" 39#endif 40#ifdef LANGUAGE_IT_IT 41 #include "lang/it-IT.rc" 42#endif 43#ifdef LANGUAGE_PL_PL 44 #include "lang/pl-PL.rc" 45#endif 46#ifdef LANGUAGE_RO_RO 47 #include "lang/ro-RO.rc" 48#endif 49#ifdef LANGUAGE_RU_RU 50 #include "lang/ru-RU.rc" 51#endif 52#ifdef LANGUAGE_TR_TR 53 #include "lang/tr-TR.rc" 54#endif 55#ifdef LANGUAGE_ZH_CN 56 #include "lang/zh-CN.rc" 57#endif 58#ifdef LANGUAGE_ZH_HK 59 #include "lang/zh-HK.rc" 60#endif 61#ifdef LANGUAGE_ZH_TW 62 #include "lang/zh-TW.rc" 63#endif 64