1/* 2 * PROJECT: ReactOS Safely Remove Hardware Applet 3 * LICENSE: GPL - See COPYING in the top level directory 4 * FILE: dll/cpl/hotplug/hotplug.rc 5 * PURPOSE: main resource file 6 * PROGRAMMERS: Johannes Anderwald (johannes.anderwald@reactos.org) 7 */ 8 9#include <windef.h> 10#include <winuser.h> 11#include <commctrl.h> 12 13#include "resource.h" 14 15LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL 16 17#define REACTOS_VERSION_DLL 18#define REACTOS_STR_FILE_DESCRIPTION "ReactOS Hardware Safe Removal Support" 19#define REACTOS_STR_INTERNAL_NAME "hotplug" 20#define REACTOS_STR_ORIGINAL_FILENAME "hotplug.dll" 21#include <reactos/version.rc> 22 23IDI_HOTPLUG ICON "resources/1.ico" 24 25#include <reactos/manifest_hosted.rc> 26 27/* UTF-8 */ 28#pragma code_page(65001) 29 30#ifdef LANGUAGE_DE_DE 31 #include "lang/de-DE.rc" 32#endif 33#ifdef LANGUAGE_EN_US 34 #include "lang/en-US.rc" 35#endif 36#ifdef LANGUAGE_ES_ES 37 #include "lang/es-ES.rc" 38#endif 39#ifdef LANGUAGE_ID_ID 40 #include "lang/id-ID.rc" 41#endif 42#ifdef LANGUAGE_JA_JP 43 #include "lang/ja-JP.rc" 44#endif 45#ifdef LANGUAGE_PL_PL 46 #include "lang/pl-PL.rc" 47#endif 48#ifdef LANGUAGE_PT_PT 49 #include "lang/pt-PT.rc" 50#endif 51#ifdef LANGUAGE_RU_RU 52 #include "lang/ru-RU.rc" 53#endif 54#ifdef LANGUAGE_TR_TR 55 #include "lang/tr-TR.rc" 56#endif 57