mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 20:50:41 +00:00

Add code to CicInputContext and CicBridge classes. Implement ImeConfigure function by using them. CORE-19360
44 lines
956 B
C++
44 lines
956 B
C++
/*
|
|
* PROJECT: ReactOS msctfime.ime
|
|
* LICENSE: LGPL-2.1-or-later (https://spdx.org/licenses/LGPL-2.1-or-later)
|
|
* PURPOSE: Supporting IME interface of Text Input Processors (TIPs)
|
|
* COPYRIGHT: Copyright 2023 Katayama Hirofumi MZ <katayama.hirofumi.mz@gmail.com>
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <stdlib.h>
|
|
|
|
#define WIN32_NO_STATUS
|
|
#define COBJMACROS
|
|
#define INITGUID
|
|
|
|
#include <windows.h>
|
|
#include <imm.h>
|
|
#include <ddk/immdev.h>
|
|
#include <cguid.h>
|
|
#include <msctf.h>
|
|
#include <ctffunc.h>
|
|
#include <shlwapi.h>
|
|
#include <strsafe.h>
|
|
|
|
#include <cicero/cicbase.h>
|
|
#include <cicero/osinfo.h>
|
|
#include <cicero/CModulePath.h>
|
|
#include <cicero/imclock.h>
|
|
|
|
class CicInputContext;
|
|
|
|
typedef struct tagCTFIMECONTEXT
|
|
{
|
|
CicInputContext *m_pCicIC;
|
|
DWORD m_dwCicFlags;
|
|
} CTFIMECONTEXT, *PCTFIMECONTEXT;
|
|
|
|
#include <wine/debug.h>
|
|
|
|
#include "resource.h"
|
|
|
|
#define IS_IME_HKL(hKL) ((((ULONG_PTR)(hKL)) & 0xF0000000) == 0xE0000000)
|
|
|
|
extern HINSTANCE g_hInst;
|