1/* 2 * PROJECT: ReactOS Utility Manager (Accessibility) 3 * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+) 4 * PURPOSE: Main resource file 5 * COPYRIGHT: Copyright 2019-2020 Bișoc George (fraizeraust99 at gmail dot com) 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" 17#define REACTOS_STR_INTERNAL_NAME "utilman" 18#define REACTOS_STR_ORIGINAL_FILENAME "utilman.exe" 19#include <reactos/version.rc> 20 21IDI_ICON_UTILMAN ICON "res/utilman.ico" 22 23#include <reactos/manifest_exe.rc> 24 25/* UTF-8 */ 26#pragma code_page(65001) 27 28#ifdef LANGUAGE_EN_US 29 #include "lang/en-US.rc" 30#endif 31#ifdef LANGUAGE_IT_IT 32 #include "lang/it-IT.rc" 33#endif 34#ifdef LANGUAGE_JA_JP 35 #include "lang/ja-JP.rc" 36#endif 37#ifdef LANGUAGE_RO_RO 38 #include "lang/ro-RO.rc" 39#endif 40#ifdef LANGUAGE_RU_RU 41 #include "lang/ru-RU.rc" 42#endif 43 44/* EOF */ 45