mirror of
https://github.com/reactos/reactos.git
synced 2025-06-06 18:00:41 +00:00
I'll never bet again against svn... Add forgotten file, part 3 of x (Should be the last)
Thanks Usurp. svn path=/branches/reactos-yarotows/; revision=48029
This commit is contained in:
parent
b9761e9b01
commit
ae9aca9947
1 changed files with 46 additions and 0 deletions
46
ntoskrnl/vf/driver.c
Normal file
46
ntoskrnl/vf/driver.c
Normal file
|
@ -0,0 +1,46 @@
|
||||||
|
/*
|
||||||
|
* PROJECT: ReactOS Kernel
|
||||||
|
* LICENSE: BSD - See COPYING.ARM in the top level directory
|
||||||
|
* FILE: ntoskrnl/vf/driver.c
|
||||||
|
* PURPOSE: Driver Verifier Device Driver Interface
|
||||||
|
* PROGRAMMERS: ReactOS Portable Systems Group
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* INCLUDES *****************************************************************/
|
||||||
|
|
||||||
|
#include <ntoskrnl.h>
|
||||||
|
#define NDEBUG
|
||||||
|
#include <debug.h>
|
||||||
|
|
||||||
|
/* FUNCTIONS *****************************************************************/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @unimplemented
|
||||||
|
*/
|
||||||
|
BOOLEAN
|
||||||
|
NTAPI
|
||||||
|
VfIsVerificationEnabled(IN VF_OBJECT_TYPE VfObjectType,
|
||||||
|
IN PVOID Object OPTIONAL)
|
||||||
|
{
|
||||||
|
UNIMPLEMENTED;
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @unimplemented
|
||||||
|
*/
|
||||||
|
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,
|
||||||
|
...)
|
||||||
|
{
|
||||||
|
UNIMPLEMENTED;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* EOF */
|
Loading…
Reference in a new issue