ReactOS
0.4.16-dev-306-g647d351
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
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
_
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
music.c
Go to the documentation of this file.
1
/*
2
* PROJECT: ReactX Diagnosis Application
3
* LICENSE: LGPL - See COPYING in the top level directory
4
* FILE: base/applications/dxdiag/music.c
5
* PURPOSE: ReactX diagnosis music page
6
* COPYRIGHT: Copyright 2008 Johannes Anderwald
7
*
8
*/
9
10
#include "
precomp.h
"
11
12
INT_PTR
CALLBACK
13
MusicPageWndProc
(
HWND
hDlg,
UINT
message
,
WPARAM
wParam
,
LPARAM
lParam
)
14
{
15
UNREFERENCED_PARAMETER
(
lParam
);
16
UNREFERENCED_PARAMETER
(
wParam
);
17
switch
(
message
) {
18
case
WM_INITDIALOG
:
19
{
20
SetWindowPos
(hDlg,
NULL
, 10, 32, 0, 0,
SWP_NOACTIVATE
|
SWP_NOOWNERZORDER
|
SWP_NOSIZE
|
SWP_NOZORDER
);
21
return
TRUE
;
22
}
23
}
24
25
return
FALSE
;
26
}
wParam
WPARAM wParam
Definition:
combotst.c:138
lParam
LPARAM lParam
Definition:
combotst.c:139
NULL
#define NULL
Definition:
types.h:112
TRUE
#define TRUE
Definition:
types.h:120
FALSE
#define FALSE
Definition:
types.h:117
CALLBACK
#define CALLBACK
Definition:
compat.h:35
void
Definition:
nsiface.idl:2307
MusicPageWndProc
INT_PTR CALLBACK MusicPageWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
Definition:
music.c:13
UINT
unsigned int UINT
Definition:
ndis.h:50
UNREFERENCED_PARAMETER
#define UNREFERENCED_PARAMETER(P)
Definition:
ntbasedef.h:325
message
Definition:
tftpd.h:60
INT_PTR
int32_t INT_PTR
Definition:
typedefs.h:64
precomp.h
LPARAM
LONG_PTR LPARAM
Definition:
windef.h:208
WPARAM
UINT_PTR WPARAM
Definition:
windef.h:207
SWP_NOACTIVATE
#define SWP_NOACTIVATE
Definition:
winuser.h:1245
SetWindowPos
BOOL WINAPI SetWindowPos(_In_ HWND, _In_opt_ HWND, _In_ int, _In_ int, _In_ int, _In_ int, _In_ UINT)
SWP_NOSIZE
#define SWP_NOSIZE
Definition:
winuser.h:1248
WM_INITDIALOG
#define WM_INITDIALOG
Definition:
winuser.h:1742
SWP_NOOWNERZORDER
#define SWP_NOOWNERZORDER
Definition:
winuser.h:1252
SWP_NOZORDER
#define SWP_NOZORDER
Definition:
winuser.h:1250
base
applications
dxdiag
music.c
Generated on Mon Dec 2 2024 06:04:31 for ReactOS by
1.9.6