-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathvffuncs.h
53 lines (39 loc) · 884 Bytes
/
vffuncs.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/*++ NDK Version: 0098
Copyright (c) ReactOS Portable Systems Group. All rights reserved.
Header Name:
vffuncs.h
Abstract:
Function definitions for the Driver Verifier.
Author:
ReactOS Portable Systems Group ([email protected]) - Created - 27-Jun-2010
--*/
#ifndef _VFFUNCS_H
#define _VFFUNCS_H
//
// Dependencies
//
#include <..\ndk\umtypes.h>
#include <..\ndk\vftypes.h>
#ifndef NTOS_MODE_USER
//
// Verifier Device Driver Interface
//
BOOLEAN
NTAPI
VfIsVerificationEnabled(
_In_ VF_OBJECT_TYPE VfObjectType,
_In_opt_ PVOID Object
);
VOID
VfFailDeviceNode(
_In_ PDEVICE_OBJECT PhysicalDeviceObject,
_In_ ULONG BugCheckMajorCode,
_In_ ULONG BugCheckMinorCode,
_In_ VF_FAILURE_CLASS FailureClass,
_Inout_ PULONG AssertionControl,
_In_ PSTR DebuggerMessageText,
_In_ PSTR ParameterFormatString,
...
);
#endif
#endif