mirror of
https://github.com/reactos/reactos.git
synced 2024-11-10 00:34:39 +00:00
fc3eeb61f3
Refactoring and reduce binary size. JIRA issue: CORE-19268 - Add cicero static library in sdk/lib/cicero folder. - Delete sdk/include/reactos/cicero folder. - Adapt the dependencies to these changes. - Make ctfmon, msutb, and msctf modules UNICODE.
33 lines
668 B
C
33 lines
668 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 <undocuser.h>
|
|
#include <cguid.h>
|
|
#include <msctf.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>
|