I'll never bet again against svn... Add forgotten file, part 3 of x (Should be the...
authorJérôme Gardou <jerome.gardou@reactos.org>
Tue, 13 Jul 2010 19:04:04 +0000 (19:04 +0000)
committerJérôme Gardou <jerome.gardou@reactos.org>
Tue, 13 Jul 2010 19:04:04 +0000 (19:04 +0000)
Thanks Usurp.

svn path=/branches/reactos-yarotows/; revision=48029

ntoskrnl/vf/driver.c [new file with mode: 0644]

diff --git a/ntoskrnl/vf/driver.c b/ntoskrnl/vf/driver.c
new file mode 100644 (file)
index 0000000..8f9cc2b
--- /dev/null
@@ -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 */