mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 05:12:55 +00:00
[CTFMON][SDK] Add ctfmon.exe (#6149)
ctfmon.exe will be a replacement of our kbswitch.exe in the future. That is the front-end of Language Bar. It is needed to support TIPs. - Add ctfmon.exe at base/applications/ctfmon. - Add <cicero/cicbase.h>, <cicero/CModulePath.h>, and <cicero/osinfo.h> headers and use them. CORE-19362
This commit is contained in:
parent
a19ba4760e
commit
079b36542c
14 changed files with 1156 additions and 0 deletions
26
base/applications/ctfmon/CLoaderWnd.h
Normal file
26
base/applications/ctfmon/CLoaderWnd.h
Normal file
|
@ -0,0 +1,26 @@
|
|||
/*
|
||||
* PROJECT: ReactOS CTF Monitor
|
||||
* LICENSE: LGPL-2.1-or-later (https://spdx.org/licenses/LGPL-2.1-or-later)
|
||||
* PURPOSE: Cicero TIP 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);
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue