📄 rawprocs.h
字号:
/*++
Copyright (c) Microsoft Corporation. All rights reserved.
You may only use this code if you agree to the terms of the Windows Research Kernel Source Code License agreement (see License.txt).
If you do not agree to the terms, do not use the code.
Module Name:
RawProcs.h
Abstract:
This module defines all of the globally used procedures in the Raw
file system.
--*/
#ifndef _RAWPROCS_
#define _RAWPROCS_
#pragma warning(disable:4214) // bit field types other than int
#pragma warning(disable:4201) // nameless struct/union
#pragma warning(disable:4324) // alignment sensitive to declspec
#pragma warning(disable:4127) // condition expression is constant
#pragma warning(disable:4115) // named type definition in parentheses
#include <ntifs.h>
#include <ntdddisk.h>
#include <string.h>
#include "nodetype.h"
#include "RawStruc.h"
//
// This is the main entry point to the Raw File system.
//
NTSTATUS
RawDispatch (
IN PVOLUME_DEVICE_OBJECT VolumeDeviceObject,
IN PIRP Irp
);
//
// MAJOR FUNCTIONS
//
// These routines are called by RawDispatch via the I/O system via the
// dispatch table in the Driver Object. If the status returned is not
// STATUS_PENDING, the Irp will be complete with this status.
//
NTSTATUS
RawCleanup ( // implemented in Cleanup.c
IN PVCB Vcb,
IN PIRP Irp,
IN PIO_STACK_LOCATION IrpSp
);
NTSTATUS
RawClose ( // implemented in Close.c
IN PVCB Vcb,
IN PIRP Irp,
PIO_STACK_LOCATION IrpSp
);
NTSTATUS
RawCreate ( // implemented in Create.c
IN PVCB Vcb,
IN PIRP Irp,
PIO_STACK_LOCATION IrpSp
);
NTSTATUS
RawFileSystemControl ( // implemented in FsCtrl.c
IN PVCB Vcb,
IN PIRP Irp,
PIO_STACK_LOCATION IrpSp
);
NTSTATUS
RawReadWriteDeviceControl ( // implemented in ReadWrit.c
IN PVCB Vcb,
IN PIRP Irp,
PIO_STACK_LOCATION IrpSp
);
NTSTATUS
RawQueryInformation ( // implemented in FileInfo.c
IN PVCB Vcb,
IN PIRP Irp,
PIO_STACK_LOCATION IrpSp
);
NTSTATUS
RawSetInformation ( // implemented in FileInfo.c
IN PVCB Vcb,
IN PIRP Irp,
PIO_STACK_LOCATION IrpSp
);
NTSTATUS
RawQueryVolumeInformation ( // implemented in VolInfo.c
IN PVCB Vcb,
IN PIRP Irp,
PIO_STACK_LOCATION IrpSp
);
//
// Miscellaneous support routines
//
//
// Completion routine for read, write, and device control to deal with
// verify issues. Implemented in RawDisp.c
//
NTSTATUS
RawCompletionRoutine(
IN PDEVICE_OBJECT DeviceObject,
IN PIRP Irp,
IN PVOID Context
);
//
// In-memory structure support routines, implemented in StrucSup.c
//
NTSTATUS
RawInitializeVcb (
IN OUT PVCB Vcb,
IN PDEVICE_OBJECT TargetDeviceObject,
IN PVPB Vpb
);
BOOLEAN
RawCheckForDismount (
PVCB Vcb,
BOOLEAN CalledFromCreate
);
//
// This macro returns TRUE if a flag in a set of flags is on and FALSE
// otherwise
//
#define BooleanFlagOn(Flags,SingleFlag) ( \
((Flags) & (SingleFlag)) != 0 ? TRUE : FALSE)
//
// This macro just returns the particular flag if its set
//
#define FlagOn(F,SF) ( \
(((F) & (SF))) \
)
//
// This macro completes a request
//
#define RawCompleteRequest(IRP,STATUS) { \
\
(IRP)->IoStatus.Status = (STATUS); \
\
IoCompleteRequest( (IRP), IO_DISK_INCREMENT ); \
}
#define MUTEX_LEVEL_FILESYSTEM_RAW_VCB (ULONG)0x11000006
#endif // _RAWPROCS_
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -