1/* 2 * PROJECT: ReactOS msutb.dll 3 * LICENSE: LGPL-2.1-or-later (https://spdx.org/licenses/LGPL-2.1-or-later) 4 * PURPOSE: Resource of msutb.dll 5 * COPYRIGHT: Copyright 2023-2024 Katayama Hirofumi MZ <katayama.hirofumi.mz@gmail.com> 6 */ 7 8#include <windef.h> 9#include <winuser.rh> 10 11#include "resource.h" 12 13LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL 14 15#define REACTOS_VERSION_DLL 16#define REACTOS_STR_FILE_DESCRIPTION "ReactOS msutb.dll" 17#define REACTOS_STR_INTERNAL_NAME "msutb" 18#define REACTOS_STR_ORIGINAL_FILENAME "msutb.dll" 19#include <reactos/version.rc> 20 21#include <reactos/manifest_hosted.rc> 22 23IDI_MAINICON ICON "res/earth.ico" 24 25IDB_BITMAP154 BITMAP "res/Bitmap-154.bmp" 26IDB_BITMAP155 BITMAP "res/Bitmap-155.bmp" 27 28/* UTF-8 */ 29#pragma code_page(65001) 30 31#ifdef LANGUAGE_EN_US 32 #include "lang/en-US.rc" 33#endif 34#ifdef LANGUAGE_PT_PT 35 #include "lang/pt-PT.rc" 36#endif 37#ifdef LANGUAGE_RU_RU 38 #include "lang/ru-RU.rc" 39#endif 40