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 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_FR_FR
32    #include "lang/fr-FR.rc"
33#endif
34#ifdef LANGUAGE_HE_IL
35    #include "lang/he-IL.rc"
36#endif
37#ifdef LANGUAGE_IT_IT
38    #include "lang/it-IT.rc"
39#endif
40#ifdef LANGUAGE_PL_PL
41    #include "lang/pl-PL.rc"
42#endif
43#ifdef LANGUAGE_RO_RO
44    #include "lang/ro-RO.rc"
45#endif
46#ifdef LANGUAGE_RU_RU
47    #include "lang/ru-RU.rc"
48#endif
49#ifdef LANGUAGE_UK_UA
50    #include "lang/uk-UA.rc"
51#endif
52
53/* EOF */
54