2023-12-25 13:29:57 +00:00
|
|
|
/*
|
|
|
|
* PROJECT: ReactOS msutb.dll
|
|
|
|
* LICENSE: LGPL-2.1-or-later (https://spdx.org/licenses/LGPL-2.1-or-later)
|
|
|
|
* PURPOSE: Resource of msutb.dll
|
2024-02-12 08:40:57 +00:00
|
|
|
* COPYRIGHT: Copyright 2023-2024 Katayama Hirofumi MZ <katayama.hirofumi.mz@gmail.com>
|
2023-12-25 13:29:57 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <windef.h>
|
|
|
|
#include <winuser.rh>
|
|
|
|
|
|
|
|
#include "resource.h"
|
|
|
|
|
|
|
|
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
|
|
|
|
|
|
|
|
#define REACTOS_VERSION_DLL
|
|
|
|
#define REACTOS_STR_FILE_DESCRIPTION "ReactOS msutb.dll"
|
|
|
|
#define REACTOS_STR_INTERNAL_NAME "msutb"
|
|
|
|
#define REACTOS_STR_ORIGINAL_FILENAME "msutb.dll"
|
|
|
|
#include <reactos/version.rc>
|
|
|
|
|
|
|
|
#include <reactos/manifest_hosted.rc>
|
|
|
|
|
2024-01-31 07:52:02 +00:00
|
|
|
IDI_MAINICON ICON "res/earth.ico"
|
2024-02-12 08:40:57 +00:00
|
|
|
|
2024-02-10 09:12:45 +00:00
|
|
|
IDB_BITMAP154 BITMAP "res/Bitmap-154.bmp"
|
|
|
|
IDB_BITMAP155 BITMAP "res/Bitmap-155.bmp"
|
2024-01-31 07:52:02 +00:00
|
|
|
|
2023-12-25 13:29:57 +00:00
|
|
|
/* UTF-8 */
|
|
|
|
#pragma code_page(65001)
|
|
|
|
|
|
|
|
#ifdef LANGUAGE_EN_US
|
|
|
|
#include "lang/en-US.rc"
|
|
|
|
#endif
|
2024-06-13 14:01:04 +00:00
|
|
|
#ifdef LANGUAGE_PT_PT
|
|
|
|
#include "lang/pt-PT.rc"
|
|
|
|
#endif
|
2024-07-09 14:00:02 +00:00
|
|
|
#ifdef LANGUAGE_RU_RU
|
|
|
|
#include "lang/ru-RU.rc"
|
|
|
|
#endif
|