mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +00:00
4b9eec2d3b
Also fix overlapping window controls.
Addendum to f4460c3fcd
. CORE-19363
39 lines
940 B
Text
39 lines
940 B
Text
/*
|
|
* PROJECT: ReactOS msutb.dll
|
|
* LICENSE: LGPL-2.1-or-later (https://spdx.org/licenses/LGPL-2.1-or-later)
|
|
* PURPOSE: Resource of msutb.dll
|
|
* COPYRIGHT: Copyright 2023-2024 Katayama Hirofumi MZ <katayama.hirofumi.mz@gmail.com>
|
|
*/
|
|
|
|
#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>
|
|
|
|
IDI_MAINICON ICON "res/earth.ico"
|
|
|
|
IDB_BITMAP154 BITMAP "res/Bitmap-154.bmp"
|
|
IDB_BITMAP155 BITMAP "res/Bitmap-155.bmp"
|
|
|
|
/* UTF-8 */
|
|
#pragma code_page(65001)
|
|
|
|
#ifdef LANGUAGE_EN_US
|
|
#include "lang/en-US.rc"
|
|
#endif
|
|
#ifdef LANGUAGE_PT_PT
|
|
#include "lang/pt-PT.rc"
|
|
#endif
|
|
#ifdef LANGUAGE_RU_RU
|
|
#include "lang/ru-RU.rc"
|
|
#endif
|