Git conversion: Make reactos the root directory, move rosapps, rostests, wallpapers into modules, and delete rossubsys.

This commit is contained in:
Colin Finck 2017-10-03 07:45:34 +00:00
parent b94e2d8ca0
commit c2c66aff7d
24198 changed files with 0 additions and 37285 deletions

53
sdk/include/ndk/vffuncs.h Normal file
View file

@ -0,0 +1,53 @@
/*++ NDK Version: 0098
Copyright (c) ReactOS Portable Systems Group. All rights reserved.
Header Name:
vffuncs.h
Abstract:
Function definitions for the Driver Verifier.
Author:
ReactOS Portable Systems Group (ros.arm@reactos.org) - Created - 27-Jun-2010
--*/
#ifndef _VFFUNCS_H
#define _VFFUNCS_H
//
// Dependencies
//
#include <umtypes.h>
#include <vftypes.h>
#ifndef NTOS_MODE_USER
//
// Verifier Device Driver Interface
//
BOOLEAN
NTAPI
VfIsVerificationEnabled(
_In_ VF_OBJECT_TYPE VfObjectType,
_In_opt_ PVOID Object
);
VOID
VfFailDeviceNode(
_In_ PDEVICE_OBJECT PhysicalDeviceObject,
_In_ ULONG BugCheckMajorCode,
_In_ ULONG BugCheckMinorCode,
_In_ VF_FAILURE_CLASS FailureClass,
_Inout_ PULONG AssertionControl,
_In_ PSTR DebuggerMessageText,
_In_ PSTR ParameterFormatString,
...
);
#endif
#endif