ReactOS
0.4.16-dev-570-g1868985
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
misc.c
Go to the documentation of this file.
1
/*
2
* PROJECT: ReactOS Generic CPU Driver
3
* LICENSE: GNU GPLv2 only as published by the Free Software Foundation
4
* FILE: drivers/processor/processr/misc.c
5
* PURPOSE: Misc routines
6
* PROGRAMMERS: Eric Kohl <eric.kohl@reactos.org>
7
*/
8
9
/* INCLUDES *******************************************************************/
10
11
#include "
processr.h
"
12
13
#define NDEBUG
14
#include <debug.h>
15
16
/* FUNCTIONS ******************************************************************/
17
18
NTSTATUS
19
NTAPI
20
ForwardIrpAndForget
(
21
IN
PDEVICE_OBJECT
DeviceObject
,
22
IN
PIRP
Irp
)
23
{
24
PDEVICE_OBJECT
LowerDevice;
25
26
LowerDevice = ((
PDEVICE_EXTENSION
)
DeviceObject
->DeviceExtension)->LowerDevice;
27
ASSERT
(LowerDevice);
28
29
IoSkipCurrentIrpStackLocation
(
Irp
);
30
return
IoCallDriver
(LowerDevice,
Irp
);
31
}
32
33
/* EOF */
NTSTATUS
LONG NTSTATUS
Definition:
precomp.h:26
Irp
_In_ PIRP Irp
Definition:
csq.h:116
PDEVICE_EXTENSION
struct _BEEP_DEVICE_EXTENSION * PDEVICE_EXTENSION
ForwardIrpAndForget
DRIVER_DISPATCH ForwardIrpAndForget
Definition:
i8042prt.h:341
ASSERT
#define ASSERT(a)
Definition:
mode.c:44
IoSkipCurrentIrpStackLocation
#define IoSkipCurrentIrpStackLocation(Irp)
Definition:
ntifs_ex.h:421
IoCallDriver
#define IoCallDriver
Definition:
irp.c:1225
processr.h
_DEVICE_OBJECT
Definition:
env_spec_w32.h:413
_IRP
Definition:
Bus_PDO_EvalMethod.c:105
NTAPI
#define NTAPI
Definition:
typedefs.h:36
IN
#define IN
Definition:
typedefs.h:39
DeviceObject
_In_ PDEVICE_OBJECT DeviceObject
Definition:
wdfdevice.h:2055
drivers
processor
processr
misc.c
Generated on Wed Jan 22 2025 06:06:18 for ReactOS by
1.9.6