xref: /reactos/dll/ime/msctfime/msctfime.h (revision 64378a88)
1 /*
2  * PROJECT:     ReactOS msctfime.ime
3  * LICENSE:     LGPL-2.1-or-later (https://spdx.org/licenses/LGPL-2.1-or-later)
4  * PURPOSE:     Supporting IME interface of Text Input Processors (TIPs)
5  * COPYRIGHT:   Copyright 2023 Katayama Hirofumi MZ <katayama.hirofumi.mz@gmail.com>
6  */
7 
8 #pragma once
9 
10 #include <stdlib.h>
11 
12 #define WIN32_NO_STATUS
13 #define COBJMACROS
14 #define INITGUID
15 
16 #include <windows.h>
17 #include <imm.h>
18 #include <ddk/immdev.h>
19 #include <msctf.h>
20 #include <shlwapi.h>
21 #include <strsafe.h>
22 
23 #include <cicero/cicbase.h>
24 #include <cicero/osinfo.h>
25 #include <cicero/CModulePath.h>
26 
27 #include <wine/debug.h>
28 
29 #include "resource.h"
30 
31 #define IS_IME_HKL(hKL) ((((ULONG_PTR)(hKL)) & 0xF0000000) == 0xE0000000)
32 
33 extern HINSTANCE g_hInst;
34