1/* 2 * PROJECT: ReactOS Utility Manager Resources DLL (UManDlg.dll) 3 * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+) 4 * PURPOSE: Main DLL resource file 5 * COPYRIGHT: Copyright 2019-2020 George Bișoc (george.bisoc@reactos.org) 6 */ 7 8/* INCLUDES ******************************************************************/ 9 10#include <windef.h> 11#include <winuser.h> 12#include "resource.h" 13 14LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL 15 16#define REACTOS_STR_FILE_DESCRIPTION "ReactOS Accessibility Utility Manager Resources DLL" 17#define REACTOS_STR_INTERNAL_NAME "UManDlg" 18#define REACTOS_STR_ORIGINAL_FILENAME "UManDlg.dll" 19#include <reactos/version.rc> 20 21#include <reactos/manifest_exe.rc> 22 23/* UTF-8 */ 24#pragma code_page(65001) 25 26#ifdef LANGUAGE_DE_DE 27 #include "lang/de-DE.rc" 28#endif 29#ifdef LANGUAGE_EN_US 30 #include "lang/en-US.rc" 31#endif 32#ifdef LANGUAGE_ES_ES 33 #include "lang/es-ES.rc" 34#endif 35#ifdef LANGUAGE_FR_FR 36 #include "lang/fr-FR.rc" 37#endif 38#ifdef LANGUAGE_HE_IL 39 #include "lang/he-IL.rc" 40#endif 41#ifdef LANGUAGE_IT_IT 42 #include "lang/it-IT.rc" 43#endif 44#ifdef LANGUAGE_PL_PL 45 #include "lang/pl-PL.rc" 46#endif 47#ifdef LANGUAGE_RO_RO 48 #include "lang/ro-RO.rc" 49#endif 50#ifdef LANGUAGE_RU_RU 51 #include "lang/ru-RU.rc" 52#endif 53#ifdef LANGUAGE_UK_UA 54 #include "lang/uk-UA.rc" 55#endif 56#ifdef LANGUAGE_ZH_CN 57 #include "lang/zh-CN.rc" 58#endif 59 60/* EOF */ 61