#include <ntddk.h>
#include <debug.h>
#include "ntfs.h"
Go to the source code of this file.
Defines |
| #define | NDEBUG |
| #define | ROUND_UP(N, S) ((((N) + (S) - 1) / (S)) * (S)) |
| #define | ROUND_DOWN(N, S) ((N) - ((N) % (S))) |
Functions |
| static NTSTATUS | NtfsReadFile (PDEVICE_EXTENSION DeviceExt, PFILE_OBJECT FileObject, PUCHAR Buffer, ULONG Length, ULONG ReadOffset, ULONG IrpFlags, PULONG LengthRead) |
| NTSTATUS NTAPI | NtfsFsdRead (PDEVICE_OBJECT DeviceObject, PIRP Irp) |
| NTSTATUS NTAPI | NtfsFsdWrite (PDEVICE_OBJECT DeviceObject, PIRP Irp) |