mirror of
https://github.com/reactos/reactos.git
synced 2025-07-08 20:37:53 +00:00

Defining macros in proper place will improve header compatibility. JIRA issue: CORE-19268 - Move WM_IME_SYSTEM macro in <undocuser.h> into <imm32_undoc.h>. - Move IMS_... macros in <immdev.h> into <imm32_undoc.h>. - Include <imm32_undoc.h> in base/ctf/msutb.
34 lines
695 B
C
34 lines
695 B
C
/*
|
|
* PROJECT: ReactOS msutb.dll
|
|
* LICENSE: LGPL-2.1-or-later (https://spdx.org/licenses/LGPL-2.1-or-later)
|
|
* PURPOSE: Language Bar (Tipbar)
|
|
* COPYRIGHT: Copyright 2023 Katayama Hirofumi MZ <katayama.hirofumi.mz@gmail.com>
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <stdlib.h>
|
|
|
|
#define COBJMACROS
|
|
#define INITGUID
|
|
|
|
#include <windows.h>
|
|
#include <oleacc.h>
|
|
#include <imm.h>
|
|
#include <imm32_undoc.h>
|
|
#include <cguid.h>
|
|
#include <msctf.h>
|
|
#include <msctf_undoc.h>
|
|
#include <ctffunc.h>
|
|
#include <ctfutb.h>
|
|
#include <shlwapi.h>
|
|
#include <atlbase.h>
|
|
#include <atlcom.h>
|
|
#include <strsafe.h>
|
|
|
|
#include "resource.h"
|
|
#include <cicreg.h>
|
|
#include <cicutb.h>
|
|
#include <cicuif.h>
|
|
|
|
#include <wine/debug.h>
|