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
main.c
Go to the documentation of this file.
1
2
#include <windows.h>
3
#include <stdio.h>
4
5
#include <
ddrawi.h
>
6
#include <
d3dhal.h
>
7
8
/* Black Box program for D3DParseUnknownCommand in ddraw.dll
9
*
10
* This program scaning all return valu that D3DParseUnknownCommand have in ddraw.dll
11
* This command is not 100% document in MSDN so I using ddk kit doc and WinCE document
12
* and ms ddk / ms sdk to figout the basic. and MSDN was unclare what this command support for
13
* D3DHAL_DP2COMMAND dp2command->bCommand so I wrote this small scanner
14
*
15
* it will show D3DParseUnknownCommand dp2command->bCommand support follow command
16
* command hex dec
17
* D3DDP2OP_VIEWPORTINFO (aka 0x1c) 28
18
* D3DDP2OP_WINFO (aka 0x1d) 29
19
* Unknown (aka 0x0d) 13
20
*
21
* no doc in msdn about command 13 (dec) I will exaime it later
22
*
23
*/
24
25
INT
main
(
INT
argc
,
TCHAR
*
argv
[]);
26
VOID
BuildReturnCode
(
DWORD
* ReturnCode);
27
28
INT
main
(
INT
argc
,
TCHAR
*
argv
[])
29
{
30
DWORD
ReturnCode[256];
31
32
BuildReturnCode
(ReturnCode);
33
34
return
0;
35
}
36
37
VOID
BuildReturnCode
(
DWORD
* ReturnCode)
38
{
39
INT
t
;
40
D3DHAL_DP2COMMAND
dp2command;
41
DWORD
lplpvReturnedCommand[2];
42
43
for
(
t
=0;
t
<256;
t
++)
44
{
45
dp2command.
bCommand
=
t
;
46
ReturnCode[
t
] =
D3DParseUnknownCommand
( (
LPVOID
) &dp2command, (
LPVOID
*) lplpvReturnedCommand) ;
47
printf
(
"D3DParseUnknownCommand return code = %x command %d \n"
, (
UINT
)ReturnCode[
t
],
t
);
48
}
49
}
argc
static int argc
Definition:
ServiceArgs.c:12
d3dhal.h
ddrawi.h
D3DParseUnknownCommand
HRESULT WINAPI D3DParseUnknownCommand(LPVOID lpCmd, LPVOID *lpRetCmd)
Definition:
main.c:357
main
int main()
Definition:
test.c:6
DWORD
unsigned long DWORD
Definition:
ntddk_ex.h:95
printf
#define printf
Definition:
freeldr.h:97
t
GLdouble GLdouble t
Definition:
gl.h:2047
void
Definition:
nsiface.idl:2307
BuildReturnCode
VOID BuildReturnCode(DWORD *ReturnCode)
Definition:
main.c:37
argv
#define argv
Definition:
mplay32.c:18
UINT
unsigned int UINT
Definition:
ndis.h:50
_D3DHAL_DP2COMMAND
Definition:
d3dhal.h:322
_D3DHAL_DP2COMMAND::bCommand
BYTE bCommand
Definition:
d3dhal.h:323
INT
int32_t INT
Definition:
typedefs.h:58
TCHAR
char TCHAR
Definition:
xmlstorage.h:189
modules
rostests
tests
D3DParseUnknownCommand_show
main.c
Generated on Mon Dec 2 2024 06:17:53 for ReactOS by
1.9.6