mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 00:12:57 +00:00
Git conversion: Make reactos the root directory, move rosapps, rostests, wallpapers into modules, and delete rossubsys.
This commit is contained in:
parent
b94e2d8ca0
commit
c2c66aff7d
24198 changed files with 0 additions and 37285 deletions
53
sdk/include/ndk/vffuncs.h
Normal file
53
sdk/include/ndk/vffuncs.h
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue