mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +00:00
f4460c3fcd
msutb.dll is the GUI back-end of Language Bar (Tipbar). - Add msutb.dll module at dll/win32/msutb/. - The implementation of msutb.dll is currently stub. - Modify msctf.spec and msctf.idl. - Add <cicero/cicutb.h>. - Adapt ctfmon.exe to these changes. CORE-19362, CORE-19363
26 lines
610 B
C++
26 lines
610 B
C++
/*
|
|
* PROJECT: ReactOS CTF Monitor
|
|
* LICENSE: LGPL-2.1-or-later (https://spdx.org/licenses/LGPL-2.1-or-later)
|
|
* PURPOSE: Cicero Tipbar (Language Bar) loader window
|
|
* COPYRIGHT: Copyright 2023 Katayama Hirofumi MZ <katayama.hirofumi.mz@gmail.com>
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
class CLoaderWnd
|
|
{
|
|
public:
|
|
HWND m_hWnd;
|
|
static BOOL s_bUninitedSystem;
|
|
static BOOL s_bWndClassRegistered;
|
|
|
|
CLoaderWnd() : m_hWnd(NULL) { }
|
|
~CLoaderWnd() { }
|
|
|
|
BOOL Init();
|
|
HWND CreateWnd();
|
|
|
|
protected:
|
|
static LRESULT CALLBACK
|
|
WindowProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
|
|
};
|