2019-04-24 14:06:05 +00:00
|
|
|
/*
|
|
|
|
* PROJECT: ReactOS Utility Manager (Accessibility)
|
|
|
|
* LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
|
|
|
|
* PURPOSE: Main resource file
|
2020-04-17 10:42:47 +00:00
|
|
|
* COPYRIGHT: Copyright 2019-2020 Bișoc George (fraizeraust99 at gmail dot com)
|
2019-04-24 14:06:05 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/* INCLUDES ******************************************************************/
|
|
|
|
|
|
|
|
#include <windef.h>
|
|
|
|
#include <winuser.h>
|
|
|
|
#include "resource.h"
|
|
|
|
|
|
|
|
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
|
|
|
|
|
|
|
|
#define REACTOS_STR_FILE_DESCRIPTION "ReactOS Accessibility Utility Manager"
|
|
|
|
#define REACTOS_STR_INTERNAL_NAME "utilman"
|
|
|
|
#define REACTOS_STR_ORIGINAL_FILENAME "utilman.exe"
|
|
|
|
#include <reactos/version.rc>
|
|
|
|
|
|
|
|
IDI_ICON_UTILMAN ICON "res/utilman.ico"
|
|
|
|
|
|
|
|
#include <reactos/manifest_exe.rc>
|
|
|
|
|
|
|
|
/* UTF-8 */
|
|
|
|
#pragma code_page(65001)
|
|
|
|
|
|
|
|
#ifdef LANGUAGE_EN_US
|
|
|
|
#include "lang/en-US.rc"
|
|
|
|
#endif
|
2020-04-26 11:14:44 +00:00
|
|
|
#ifdef LANGUAGE_IT_IT
|
|
|
|
#include "lang/it-IT.rc"
|
|
|
|
#endif
|
2020-05-01 01:34:36 +00:00
|
|
|
#ifdef LANGUAGE_JA_JP
|
|
|
|
#include "lang/ja-JP.rc"
|
|
|
|
#endif
|
2020-04-26 11:14:44 +00:00
|
|
|
#ifdef LANGUAGE_RO_RO
|
|
|
|
#include "lang/ro-RO.rc"
|
|
|
|
#endif
|
2020-04-30 15:46:18 +00:00
|
|
|
#ifdef LANGUAGE_RU_RU
|
|
|
|
#include "lang/ru-RU.rc"
|
|
|
|
#endif
|
2019-04-24 14:06:05 +00:00
|
|
|
|
|
|
|
/* EOF */
|