Author: jgardou Date: Tue Jul 13 19:04:04 2010 New Revision: 48029
URL: http://svn.reactos.org/svn/reactos?rev=48029&view=rev Log: I'll never bet again against svn... Add forgotten file, part 3 of x (Should be the last) Thanks Usurp.
Added: branches/reactos-yarotows/ntoskrnl/vf/ (with props) branches/reactos-yarotows/ntoskrnl/vf/driver.c (with props)
Propchange: branches/reactos-yarotows/ntoskrnl/vf/ ------------------------------------------------------------------------------ --- bugtraq:logregex (added) +++ bugtraq:logregex Tue Jul 13 19:04:04 2010 @@ -1,0 +1,2 @@ +([Ii]ssue|[Bb]ug)s? #?(\d+)(,? ?#?(\d+))*(,? ?(and |or )?#?(\d+))? +(\d+)
Propchange: branches/reactos-yarotows/ntoskrnl/vf/ ------------------------------------------------------------------------------ bugtraq:message = See issue #%BUGID% for more details.
Propchange: branches/reactos-yarotows/ntoskrnl/vf/ ------------------------------------------------------------------------------ bugtraq:url = http://www.reactos.org/bugzilla/show_bug.cgi?id=%BUGID%
Propchange: branches/reactos-yarotows/ntoskrnl/vf/ ------------------------------------------------------------------------------ tsvn:logminsize = 10
Added: branches/reactos-yarotows/ntoskrnl/vf/driver.c URL: http://svn.reactos.org/svn/reactos/branches/reactos-yarotows/ntoskrnl/vf/dri... ============================================================================== --- branches/reactos-yarotows/ntoskrnl/vf/driver.c (added) +++ branches/reactos-yarotows/ntoskrnl/vf/driver.c [iso-8859-1] Tue Jul 13 19:04:04 2010 @@ -1,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 */
Propchange: branches/reactos-yarotows/ntoskrnl/vf/driver.c ------------------------------------------------------------------------------ svn:eol-style = native