mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-27 03:43:36 +00:00
Follow-up of #8678. Commonize the definition of LANGID_... values. JIRA issue: CORE-20243 - Define LANGID_... values for CJK in <cjkcode.h> and use it.
36 lines
716 B
C
36 lines
716 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 <[email protected]>
|
|
*/
|
|
|
|
#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 <cjkcode.h>
|
|
|
|
#include "resource.h"
|
|
#include <cicreg.h>
|
|
#include <cicutb.h>
|
|
#include <cicuif.h>
|
|
|
|
#include <wine/debug.h>
|