reactos/include/ndk/vffuncs.h
Timo Kreuzer 5eb25b5c24 Create a branch for audio work
svn path=/branches/audio-bringup/; revision=49478
2010-11-05 11:04:48 +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