ReactOS
0.4.16-dev-981-g80eb313
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
gdihv.c
Go to the documentation of this file.
1
/*
2
* Gdi handle viewer
3
*
4
* gdihv.c
5
*
6
* Copyright (C) 2007 Timo Kreuzer <timo <dot> kreuzer <at> reactos <dot> org>
7
*
8
* This program is free software; you can redistribute it and/or modify
9
* it under the terms of the GNU General Public License as published by
10
* the Free Software Foundation; either version 2 of the License, or
11
* (at your option) any later version.
12
*
13
* This program is distributed in the hope that it will be useful,
14
* but WITHOUT ANY WARRANTY; without even the implied warranty of
15
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16
* GNU General Public License for more details.
17
*
18
* You should have received a copy of the GNU General Public License
19
* along with this program; if not, write to the Free Software
20
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21
*/
22
23
#include "
gdihv.h
"
24
25
HINSTANCE
g_hInstance
;
26
PGDI_TABLE_ENTRY
GdiHandleTable
= 0;
27
28
static
29
PGDI_TABLE_ENTRY
30
MyGdiQueryTable
()
31
{
32
PTEB
pTeb =
NtCurrentTeb
();
33
PPEB
pPeb = pTeb->
ProcessEnvironmentBlock
;
34
return
pPeb->
GdiSharedHandleTable
;
35
}
36
37
int
WINAPI
_tWinMain
(
HINSTANCE
hThisInstance,
38
HINSTANCE
hPrevInstance,
39
LPTSTR
lpszArgument,
40
int
nStyle)
41
42
{
43
g_hInstance
= hThisInstance;
44
45
InitCommonControls
();
46
47
GdiHandleTable
=
MyGdiQueryTable
();
48
49
DialogBoxParam
(
g_hInstance
,
MAKEINTRESOURCE
(
IDD_MAINWND
),
HWND_DESKTOP
,
MainWindow_WndProc
, 0);
50
51
/* The program return value is 0 */
52
return
0;
53
}
InitCommonControls
VOID WINAPI InitCommonControls(void)
Definition:
commctrl.c:870
GdiHandleTable
PGDI_TABLE_ENTRY GdiHandleTable
Definition:
gdihv.c:26
MyGdiQueryTable
static PGDI_TABLE_ENTRY MyGdiQueryTable()
Definition:
gdihv.c:30
g_hInstance
HINSTANCE g_hInstance
Definition:
gdihv.c:25
gdihv.h
_tWinMain
#define _tWinMain
Definition:
tchar.h:498
void
Definition:
nsiface.idl:2307
NtCurrentTeb
#define NtCurrentTeb
Definition:
iphlpapi_private.h:4
MainWindow_WndProc
INT_PTR CALLBACK MainWindow_WndProc(HWND hMainWnd, UINT message, WPARAM wParam, LPARAM lParam)
Definition:
mainwnd.c:81
IDD_MAINWND
#define IDD_MAINWND
Definition:
resource.h:2
MAKEINTRESOURCE
#define MAKEINTRESOURCE(i)
Definition:
ntverrsrc.c:25
_GDI_TABLE_ENTRY
Definition:
gdi.h:2
_PEB
Definition:
btrfs_drv.h:1907
_PEB::GdiSharedHandleTable
PVOID GdiSharedHandleTable
Definition:
ntddk_ex.h:292
_TEB
Definition:
compat.h:836
_TEB::ProcessEnvironmentBlock
PPEB ProcessEnvironmentBlock
Definition:
ntddk_ex.h:337
WINAPI
#define WINAPI
Definition:
msvc.h:6
DialogBoxParam
#define DialogBoxParam
Definition:
winuser.h:5784
HWND_DESKTOP
#define HWND_DESKTOP
Definition:
winuser.h:1220
LPTSTR
CHAR * LPTSTR
Definition:
xmlstorage.h:192
modules
rosapps
applications
devutils
gdihv
gdihv.c
Generated on Wed Apr 16 2025 06:06:27 for ReactOS by
1.9.6