ReactOS
0.4.16-dev-1049-g378a335
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
systempage.h
Go to the documentation of this file.
1
/*
2
* PROJECT: ReactOS Applications
3
* LICENSE: LGPL - See COPYING in the top level directory
4
* FILE: base/applications/msconfig_new/systempage.h
5
* PURPOSE: System page message handler
6
* COPYRIGHT: Copyright 2005-2006 Christoph von Wittich <Christoph@ApiViewer.de>
7
* 2011 Gregor Schneider <Gregor.Schneider@reactos.org>
8
* Copyright 2011-2012 Hermes BELUSCA - MAITO <hermes.belusca@sfr.fr>
9
*/
10
11
#ifndef _SYSTEMPAGE_H_
12
#define _SYSTEMPAGE_H_
13
14
extern
LPCWSTR
lpszSystemIni
;
15
extern
LPCWSTR
lpszWinIni
;
16
17
DWORD
GetSystemIniActivation
(
VOID
);
18
DWORD
GetWinIniActivation
(
VOID
);
19
20
INT_PTR
CALLBACK
SystemPageWndProc
(
HWND
hDlg,
UINT
message
,
WPARAM
wParam
,
LPARAM
lParam
);
21
INT_PTR
CALLBACK
WinPageWndProc
(
HWND
hDlg,
UINT
message
,
WPARAM
wParam
,
LPARAM
lParam
);
22
23
#endif
wParam
WPARAM wParam
Definition:
combotst.c:138
lParam
LPARAM lParam
Definition:
combotst.c:139
CALLBACK
#define CALLBACK
Definition:
compat.h:35
DWORD
unsigned long DWORD
Definition:
ntddk_ex.h:95
void
Definition:
nsiface.idl:2307
SystemPageWndProc
INT_PTR CALLBACK SystemPageWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
Definition:
system.c:393
GetWinIniActivation
DWORD GetWinIniActivation(VOID)
Definition:
systempage.cpp:41
GetSystemIniActivation
DWORD GetSystemIniActivation(VOID)
Definition:
systempage.cpp:34
lpszWinIni
LPCWSTR lpszWinIni
Definition:
systempage.cpp:24
WinPageWndProc
INT_PTR CALLBACK WinPageWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
Definition:
systempage.cpp:882
lpszSystemIni
LPCWSTR lpszSystemIni
Definition:
systempage.cpp:23
UINT
unsigned int UINT
Definition:
ndis.h:50
message
Definition:
tftpd.h:60
INT_PTR
int32_t INT_PTR
Definition:
typedefs.h:64
LPARAM
LONG_PTR LPARAM
Definition:
windef.h:208
WPARAM
UINT_PTR WPARAM
Definition:
windef.h:207
LPCWSTR
const WCHAR * LPCWSTR
Definition:
xmlstorage.h:185
base
applications
msconfig_new
systempage.h
Generated on Mon Apr 28 2025 06:02:53 for ReactOS by
1.9.6