ReactOS 0.4.15-dev-7953-g1f49173
fxverifierum.h
Go to the documentation of this file.
1/*++
2
3Copyright (c) Microsoft Corporation
4
5Module Name:
6
7 FxVerifierUm.cpp
8
9Abstract:
10
11 Verifier code specific to UMDF
12
13Environment:
14
15 user mode
16
17Revision History:
18
19
20
21--*/
22
23#ifndef _FXVERIFIERUM_H_
24#define _FXVERIFIERUM_H_
25
26__inline
27VOID
29 _In_ PFX_DRIVER_GLOBALS FxDriverGlobals,
32 )
33
34/*++
35
36Routine Description:
37
38 This function is an empty stub for UMDF. We don't perform "no execute"
39 pool type checks for UMDF client drivers.
40
41Arguments:
42
43 FxDriverGlobals - Supplies a pointer to the WDF driver object
44 globals.
45
46 PoolType - Supplies the pool type.
47
48 PoolTag - Supplies an optional pool tag.
49
50Return Value:
51
52 None.
53
54--*/
55
56{
57 UNREFERENCED_PARAMETER(FxDriverGlobals);
60}
61
62#endif //_FXVERIFIERUM_H_
__inline VOID FxVerifierCheckNxPoolType(_In_ PFX_DRIVER_GLOBALS FxDriverGlobals, _In_ POOL_TYPE PoolType, _In_ ULONG PoolTag)
Definition: fxverifierum.h:28
#define _In_
Definition: ms_sal.h:308
#define UNREFERENCED_PARAMETER(P)
Definition: ntbasedef.h:317
INT POOL_TYPE
Definition: typedefs.h:78
uint32_t ULONG
Definition: typedefs.h:59
_Must_inspect_result_ _In_ WDFDEVICE _In_ DEVICE_REGISTRY_PROPERTY _In_ _Strict_type_match_ POOL_TYPE PoolType
Definition: wdfdevice.h:3815
_Must_inspect_result_ _In_opt_ PWDF_OBJECT_ATTRIBUTES _In_ _Strict_type_match_ POOL_TYPE _In_opt_ ULONG PoolTag
Definition: wdfmemory.h:164