ReactOS
0.4.16-dev-980-g00983aa
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
fxwmiirphandlerum.cpp
Go to the documentation of this file.
1
/*++
2
3
Copyright (c) Microsoft Corporation
4
5
Module Name:
6
7
FxWmiIrpHandlerUm.cpp
8
9
Abstract:
10
11
This module implements the wmi irp handler for the driver frameworks.
12
13
Author:
14
15
16
17
18
Environment:
19
20
User mode only
21
22
Revision History:
23
24
--*/
25
26
#include "
fxmin.hpp
"
27
#include "FxWmiIrpHandler.hpp"
28
29
class
FxWmiIrpHandler
;
30
31
_Must_inspect_result_
32
NTSTATUS
33
FxWmiIrpHandler::PostCreateDeviceInitialize
(
34
VOID
35
)
36
{
37
ASSERTMSG
(
"Not implemented for UMDF\n"
,
FALSE
);
38
39
return
STATUS_NOT_IMPLEMENTED
;
40
}
41
42
43
VOID
44
FxWmiIrpHandler::Deregister
(
45
VOID
46
)
47
{
48
ASSERTMSG
(
"Not implemented for UMDF\n"
,
FALSE
);
49
}
50
51
_Must_inspect_result_
52
NTSTATUS
53
FxWmiIrpHandler::AddPowerPolicyProviderAndInstance
(
54
__in
PWDF_WMI_PROVIDER_CONFIG
/* ProviderConfig */
,
55
__in
FxWmiInstanceInternalCallbacks
*
/* InstanceCallbacks */
,
56
__inout
FxWmiInstanceInternal
**
/* Instance */
57
)
58
{
59
ASSERTMSG
(
"Not implemented for UMDF\n"
,
FALSE
);
60
61
return
STATUS_NOT_IMPLEMENTED
;
62
}
63
64
_Must_inspect_result_
65
NTSTATUS
66
FxWmiIrpHandler::Register
(
67
VOID
68
)
69
{
70
ASSERTMSG
(
"Not implemented for UMDF\n"
,
FALSE
);
71
72
return
STATUS_NOT_IMPLEMENTED
;
73
}
74
75
VOID
76
FxWmiIrpHandler::Cleanup
(
77
VOID
78
)
79
{
80
ASSERTMSG
(
"Not implemented for UMDF\n"
,
FALSE
);
81
}
82
83
VOID
84
FxWmiIrpHandler::ResetStateForPdoRestart
(
85
VOID
86
)
87
{
88
ASSERTMSG
(
"Not implemented for UMDF\n"
,
FALSE
);
89
}
90
91
NTSTATUS
LONG NTSTATUS
Definition:
precomp.h:26
FxWmiInstanceInternal
Definition:
fxwmiinstance.hpp:571
FxWmiIrpHandler
Definition:
fxwmiirphandler.hpp:44
FxWmiIrpHandler::AddPowerPolicyProviderAndInstance
_Must_inspect_result_ NTSTATUS AddPowerPolicyProviderAndInstance(__in PWDF_WMI_PROVIDER_CONFIG ProviderConfig, __in FxWmiInstanceInternalCallbacks *Callbacks, __inout FxWmiInstanceInternal **Instance)
Definition:
fxwmiirphandler.cpp:422
FxWmiIrpHandler::PostCreateDeviceInitialize
_Must_inspect_result_ NTSTATUS PostCreateDeviceInitialize(VOID)
Definition:
fxwmiirphandler.cpp:114
FxWmiIrpHandler::Register
_Must_inspect_result_ NTSTATUS Register(VOID)
Definition:
fxwmiirphandler.cpp:128
FxWmiIrpHandler::ResetStateForPdoRestart
VOID ResetStateForPdoRestart(VOID)
Definition:
fxwmiirphandler.cpp:228
FxWmiIrpHandler::Deregister
VOID Deregister(VOID)
Definition:
fxwmiirphandler.cpp:162
FxWmiIrpHandler::Cleanup
VOID Cleanup(VOID)
Definition:
fxwmiirphandler.cpp:216
STATUS_NOT_IMPLEMENTED
#define STATUS_NOT_IMPLEMENTED
Definition:
d3dkmdt.h:42
__in
#define __in
Definition:
dbghelp.h:35
__inout
#define __inout
Definition:
dbghelp.h:50
FALSE
#define FALSE
Definition:
types.h:117
fxmin.hpp
void
Definition:
nsiface.idl:2307
_Must_inspect_result_
#define _Must_inspect_result_
Definition:
no_sal2.h:62
ASSERTMSG
#define ASSERTMSG(msg, exp)
Definition:
nt_native.h:431
FxWmiInstanceInternalCallbacks
Definition:
fxwmiinstance.hpp:542
_WDF_WMI_PROVIDER_CONFIG
Definition:
wdfwmi.h:173
sdk
lib
drivers
wdf
shared
irphandlers
pnp
um
fxwmiirphandlerum.cpp
Generated on Mon Apr 14 2025 06:14:37 for ReactOS by
1.9.6