2023-12-25 22:29:57 +09:00
|
|
|
/*
|
|
|
|
* 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>
|
2024-01-28 11:35:44 +09:00
|
|
|
#include <oleacc.h>
|
2023-12-25 22:29:57 +09:00
|
|
|
#include <imm.h>
|
2025-06-07 07:52:05 +09:00
|
|
|
#include <imm32_undoc.h>
|
2023-12-25 22:29:57 +09:00
|
|
|
#include <cguid.h>
|
|
|
|
#include <msctf.h>
|
2025-05-26 07:22:41 +09:00
|
|
|
#include <msctf_undoc.h>
|
2023-12-25 22:29:57 +09:00
|
|
|
#include <ctffunc.h>
|
2024-01-31 16:52:02 +09:00
|
|
|
#include <ctfutb.h>
|
2023-12-25 22:29:57 +09:00
|
|
|
#include <shlwapi.h>
|
|
|
|
#include <atlbase.h>
|
|
|
|
#include <atlcom.h>
|
|
|
|
#include <strsafe.h>
|
2024-01-29 18:38:59 +09:00
|
|
|
|
|
|
|
#include "resource.h"
|
2024-02-17 09:53:50 +09:00
|
|
|
#include <cicreg.h>
|
|
|
|
#include <cicutb.h>
|
|
|
|
#include <cicuif.h>
|
2023-12-25 22:29:57 +09:00
|
|
|
|
|
|
|
#include <wine/debug.h>
|