mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-27 11:53:32 +00:00
Follow-up of #8678. JIRA issue: CORE-20243 - Rename conime_res.rc as conime.rc. - Rename Icon_2.ico as conime.ico.
22 lines
683 B
Plaintext
22 lines
683 B
Plaintext
/*
|
|
* PROJECT: ReactOS Console IME
|
|
* LICENSE: LGPL-2.1-or-later (https://spdx.org/licenses/LGPL-2.1-or-later)
|
|
* PURPOSE: Implementing Console IME Input for Far-East Asian
|
|
* COPYRIGHT: Copyright 2026 Katayama Hirofumi MZ <[email protected]>
|
|
*/
|
|
|
|
#include "resource.h"
|
|
#include <windef.h>
|
|
|
|
#define REACTOS_STR_FILE_DESCRIPTION "Console IME"
|
|
#define REACTOS_STR_INTERNAL_NAME "conime"
|
|
#define REACTOS_STR_ORIGINAL_FILENAME "conime.exe"
|
|
#define REACTOS_STR_ORIGINAL_COPYRIGHT "(C) 2026 Katayama Hirofumi MZ"
|
|
#include <reactos/version.rc>
|
|
|
|
#pragma code_page(65001) // UTF-8
|
|
|
|
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
|
|
|
|
IDI_MAINICON ICON "res/conime.ico"
|