1/* 2 * PROJECT: Safely Remove Hardware Applet 3 * LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later) 4 * PURPOSE: Main resource file 5 * COPYRIGHT: Copyright 2013 Johannes Anderwald <johannes.anderwald@reactos.org> 6 */ 7 8#include <windef.h> 9#include <winuser.h> 10#include <commctrl.h> 11 12#include "resource.h" 13 14LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL 15 16#define REACTOS_VERSION_DLL 17#define REACTOS_STR_FILE_DESCRIPTION "ReactOS Hardware Safe Removal Support" 18#define REACTOS_STR_INTERNAL_NAME "hotplug" 19#define REACTOS_STR_ORIGINAL_FILENAME "hotplug.dll" 20#include <reactos/version.rc> 21 22IDI_HOTPLUG ICON "resources/1.ico" 23 24#include <reactos/manifest_hosted.rc> 25 26/* UTF-8 */ 27#pragma code_page(65001) 28 29#ifdef LANGUAGE_DE_DE 30 #include "lang/de-DE.rc" 31#endif 32#ifdef LANGUAGE_EN_US 33 #include "lang/en-US.rc" 34#endif 35#ifdef LANGUAGE_ES_ES 36 #include "lang/es-ES.rc" 37#endif 38#ifdef LANGUAGE_FR_FR 39 #include "lang/fr-FR.rc" 40#endif 41#ifdef LANGUAGE_ID_ID 42 #include "lang/id-ID.rc" 43#endif 44#ifdef LANGUAGE_JA_JP 45 #include "lang/ja-JP.rc" 46#endif 47#ifdef LANGUAGE_PL_PL 48 #include "lang/pl-PL.rc" 49#endif 50#ifdef LANGUAGE_PT_PT 51 #include "lang/pt-PT.rc" 52#endif 53#ifdef LANGUAGE_RO_RO 54 #include "lang/ro-RO.rc" 55#endif 56#ifdef LANGUAGE_RU_RU 57 #include "lang/ru-RU.rc" 58#endif 59#ifdef LANGUAGE_TR_TR 60 #include "lang/tr-TR.rc" 61#endif 62#ifdef LANGUAGE_ZH_CN 63 #include "lang/zh-CN.rc" 64#endif 65#ifdef LANGUAGE_ZH_HK 66 #include "lang/zh-HK.rc" 67#endif 68#ifdef LANGUAGE_ZH_TW 69 #include "lang/zh-TW.rc" 70#endif 71