mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 12:53:33 +00:00
c2d0d784c7
- Create a branch to do a proper merge of USB work from a trunk base instead of from cmake-bringup - In the future, DO NOT under any circumstances branch another branch. This leads to merge problems! svn path=/branches/usb-bringup-trunk/; revision=55018
63 lines
1.4 KiB
C
63 lines
1.4 KiB
C
/*
|
|
* 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;
|
|
}
|
|
|
|
/*
|
|
* @unimplemented
|
|
*/
|
|
VOID
|
|
NTAPI
|
|
VfFailSystemBIOS(IN ULONG BugCheckMajorCode,
|
|
IN ULONG BugCheckMinorCode,
|
|
IN VF_FAILURE_CLASS FailureClass,
|
|
IN OUT PULONG AssertionControl,
|
|
IN PSTR DebuggerMessageText,
|
|
IN PSTR ParameterFormatString,
|
|
...)
|
|
{
|
|
UNIMPLEMENTED;
|
|
}
|
|
|
|
/* EOF */
|