mirror of
https://github.com/reactos/reactos.git
synced 2024-11-18 21:13:52 +00:00
5e4fe2cf40
Supporting Language Bar... JIRA issue: CORE-19363 - Add CTrayIconWnd, CMainIconItem, and CButtonIconItem classes. - Modify msctf.spec for TF_GetLangIcon function. - Add main icon IDI_MAINICON ("res/earth.ico").
35 lines
738 B
C
35 lines
738 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 WIN32_NO_STATUS
|
|
#define COBJMACROS
|
|
#define INITGUID
|
|
|
|
#include <windows.h>
|
|
#include <oleacc.h>
|
|
#include <imm.h>
|
|
#include <ddk/immdev.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>
|
|
#undef STATUS_NO_MEMORY
|
|
|
|
#include "resource.h"
|
|
#include <cicero/cicreg.h>
|
|
#include <cicero/cicutb.h>
|
|
#include <cicero/cicuif.h>
|
|
|
|
#include <wine/debug.h>
|