mirror of
https://github.com/reactos/reactos.git
synced 2024-11-10 00:34:39 +00:00
17617221ce
## Overview 1. msctfime.ime is an IME file interface for new-style IMEs a.k.a. "Text Input Processors" (TIPs). 2. msctfime.ime is loaded as old-style IME file at ImmLoadLayout in specific condition. 3. msctfime.ime communicates with the current TIP (This feature is not implemented yet). ## Proposed changes - Add msctfime module at dll/ime/msctfime. - The functions in this module are currently stub. - Move IME file interface declarations from <imm.h> to <ddk/immdev.h>. - Modify ImmNotifyIME, NotifyIME, and ImeProcessKey prototypes for x64 compliance. CORE-19360
32 lines
796 B
Text
32 lines
796 B
Text
/*
|
|
* PROJECT: ReactOS msctfime.ime
|
|
* LICENSE: LGPL-2.1-or-later (https://spdx.org/licenses/LGPL-2.1-or-later)
|
|
* PURPOSE: Resource of msctfime.ime
|
|
* COPYRIGHT: Copyright 2023 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 msctfime.ime"
|
|
#define REACTOS_STR_INTERNAL_NAME "msctfime"
|
|
#define REACTOS_STR_ORIGINAL_FILENAME "msctfime.ime"
|
|
#include <reactos/version.rc>
|
|
|
|
#include <reactos/manifest_hosted.rc>
|
|
|
|
/* Icons */
|
|
IDI_UNICODE ICON "res/unicode.ico"
|
|
IDI_DOWN ICON "res/down.ico"
|
|
|
|
/* UTF-8 */
|
|
#pragma code_page(65001)
|
|
|
|
#ifdef LANGUAGE_EN_US
|
|
#include "lang/en-US.rc"
|
|
#endif
|