reactos/include/ndk/vffuncs.h
Hermès Bélusca-Maïto 65ce146169 Create a branch for working on csrss and co.
svn path=/branches/ros-csrss/; revision=57561
2012-10-14 13:04:31 +00:00

55 lines
868 B
C

/*++ 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 (ros.arm@reactos.org) - Created - 27-Jun-2010
--*/
#ifndef _VFFUNCS_H
#define _VFFUNCS_H
//
// Dependencies
//
#include <umtypes.h>
#include <vftypes.h>
#ifndef NTOS_MODE_USER
//
// Verifier Device Driver Interface
//
BOOLEAN
NTAPI
VfIsVerificationEnabled(
IN VF_OBJECT_TYPE VfObjectType,
IN PVOID Object OPTIONAL
);
VOID
NTAPI
VfFailDeviceNode(
IN PDEVICE_OBJECT PhysicalDeviceObject,
IN ULONG BugCheckMajorCode,
IN ULONG BugCheckMinorCode,
IN VF_FAILURE_CLASS FailureClass,
IN OUT PULONG AssertionControl,
IN PSTR DebuggerMessageText,
IN PSTR ParameterFormatString,
...
);
#endif
#endif