mirror of
https://github.com/reactos/reactos.git
synced 2025-06-25 01:40:07 +00:00

This PR reorganizes the location of the CTF-related modules to improve grep-ability, understanding, and readability. New folder base/ctf will become incomplete Cicero, CTF or TSF (Text Services Framework). JIRA issue: CORE-19360 JIRA issue: CORE-19361 JIRA issue: CORE-19363 - Move ctfmon, msctf, msctfime, and msutb modules to new directory base/ctf. - Adapt CMakeLists.txt to this move. - Modify .github/labeler.yml and media/doc/WINESYNC.txt. - No code content changes except CMakeLists.txt, .github/labeler.yml, and media/doc/WINESYNC.txt.
34 lines
693 B
C
34 lines
693 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 <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>
|