ReactOS
0.4.16-dev-1133-g947c03e
Toggle main menu visibility
Main Page
Related Pages
Modules
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
Functions
_
a
b
c
d
e
f
g
h
i
l
m
o
p
r
s
t
u
v
w
Variables
_
c
d
e
f
g
h
i
l
m
n
o
p
s
t
u
x
Typedefs
_
a
b
c
d
e
f
g
h
i
l
m
o
p
r
s
t
u
v
w
x
Enumerations
_
a
b
c
d
f
i
l
m
o
p
s
t
w
x
Enumerator
a
b
c
d
e
f
g
h
i
m
n
o
p
r
s
t
u
v
w
x
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
_
a
b
c
d
e
f
h
i
k
l
m
n
o
p
r
s
t
u
v
w
z
Enumerator
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Properties
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Related Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
v
x
Files
File List
File Members
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Variables
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerator
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Macros
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Examples
precomp.h
Go to the documentation of this file.
1
/*
2
* PROJECT: ReactOS CTF Monitor
3
* LICENSE: LGPL-2.1-or-later (https://spdx.org/licenses/LGPL-2.1-or-later)
4
* PURPOSE: Providing Language Bar front-end
5
* COPYRIGHT: Copyright 2023 Katayama Hirofumi MZ <katayama.hirofumi.mz@gmail.com>
6
*/
7
8
#pragma once
9
10
#define WIN32_NO_STATUS
11
#include <windows.h>
12
#include <
shellapi.h
>
13
#include <
shlwapi.h
>
14
#include <stdlib.h>
15
#include <tchar.h>
16
#include <
strsafe.h
>
17
#include <msctf.h>
18
#include <ctfutb.h>
19
#include <ctffunc.h>
20
#include <
cicbase.h
>
21
#include <
cicutb.h
>
22
23
#include "
resource.h
"
24
25
extern
HINSTANCE
g_hInst
;
26
extern
BOOL
g_bOnWow64
;
27
extern
BOOL
g_fWinLogon
;
28
extern
DWORD
g_dwOsInfo
;
29
30
VOID
UninitApp
(
VOID
);
31
32
typedef
enum
WATCH_INDEX
33
{
34
WI_TOGGLE
= 0,
35
WI_MACHINE_TIF
= 1,
36
WI_PRELOAD
= 2,
37
WI_RUN
= 3,
38
WI_USER_TIF
= 4,
39
WI_USER_SPEECH
= 5,
40
WI_APPEARANCE
= 6,
41
WI_COLORS
= 7,
42
WI_WINDOW_METRICS
= 8,
43
WI_MACHINE_SPEECH
= 9,
44
WI_KEYBOARD_LAYOUT
= 10,
45
WI_ASSEMBLIES
= 11,
46
WI_DESKTOP_SWITCH
= 12,
47
}
WATCH_INDEX
;
UninitApp
VOID UninitApp(VOID)
Definition:
ctfmon.cpp:246
g_bOnWow64
BOOL g_bOnWow64
Definition:
ctfmon.cpp:28
g_dwOsInfo
DWORD g_dwOsInfo
Definition:
ctfmon.cpp:31
g_fWinLogon
BOOL g_fWinLogon
Definition:
ctfmon.cpp:26
WATCH_INDEX
WATCH_INDEX
Definition:
precomp.h:33
WI_ASSEMBLIES
@ WI_ASSEMBLIES
Definition:
precomp.h:45
WI_APPEARANCE
@ WI_APPEARANCE
Definition:
precomp.h:40
WI_COLORS
@ WI_COLORS
Definition:
precomp.h:41
WI_MACHINE_TIF
@ WI_MACHINE_TIF
Definition:
precomp.h:35
WI_WINDOW_METRICS
@ WI_WINDOW_METRICS
Definition:
precomp.h:42
WI_DESKTOP_SWITCH
@ WI_DESKTOP_SWITCH
Definition:
precomp.h:46
WI_TOGGLE
@ WI_TOGGLE
Definition:
precomp.h:34
WI_RUN
@ WI_RUN
Definition:
precomp.h:37
WI_USER_TIF
@ WI_USER_TIF
Definition:
precomp.h:38
WI_PRELOAD
@ WI_PRELOAD
Definition:
precomp.h:36
WI_MACHINE_SPEECH
@ WI_MACHINE_SPEECH
Definition:
precomp.h:43
WI_KEYBOARD_LAYOUT
@ WI_KEYBOARD_LAYOUT
Definition:
precomp.h:44
WI_USER_SPEECH
@ WI_USER_SPEECH
Definition:
precomp.h:39
g_hInst
HINSTANCE g_hInst
Definition:
ctfmon.cpp:23
cicbase.h
cicutb.h
BOOL
unsigned int BOOL
Definition:
ntddk_ex.h:94
DWORD
unsigned long DWORD
Definition:
ntddk_ex.h:95
void
Definition:
nsiface.idl:2307
shellapi.h
shlwapi.h
strsafe.h
resource.h
base
applications
ctfmon
precomp.h
Generated on Wed May 14 2025 06:15:41 for ReactOS by
1.9.6