From: Jérôme Gardou Date: Tue, 13 Jul 2010 19:04:04 +0000 (+0000) Subject: I'll never bet again against svn... Add forgotten file, part 3 of x (Should be the... X-Git-Tag: backups/reactos-yarotows@57446~62 X-Git-Url: https://git.reactos.org/?p=reactos.git;a=commitdiff_plain;h=ae9aca9947d762e51b234779b4730d046926e13b 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 --- diff --git a/ntoskrnl/vf/driver.c b/ntoskrnl/vf/driver.c new file mode 100644 index 00000000000..8f9cc2b2ee1 --- /dev/null +++ b/ntoskrnl/vf/driver.c @@ -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 +#define NDEBUG +#include + +/* 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 */