From e611b132f9b8abe35b362e5870b74bce94a1e58e Mon Sep 17 00:00:00 2001 From: Adam Date: Sat, 16 May 2020 20:51:50 -0700 Subject: initial commit --- public/sdk/inc/ntddvdsk.h | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 public/sdk/inc/ntddvdsk.h (limited to 'public/sdk/inc/ntddvdsk.h') diff --git a/public/sdk/inc/ntddvdsk.h b/public/sdk/inc/ntddvdsk.h new file mode 100644 index 000000000..5ef40f283 --- /dev/null +++ b/public/sdk/inc/ntddvdsk.h @@ -0,0 +1,47 @@ +/*++ BUILD Version: 0001 // Increment this if a change has global effects + +Copyright (c) 1990-1993 Microsoft Corporation + +Module Name: + + ntddvdsk.h + +Abstract: + + This is the include file that defines all constants and types for + accessing the Virtual Disk device. + +Author: + + Steve Wood (stevewo) 27-May-1990 + +Revision History: + +--*/ + +// +// Device Name - this string is the name of the device. It is the name +// that should be passed to NtOpenFile when accessing the device. +// +// Note: For devices that support multiple units, it should be suffixed +// with the Ascii representation of the unit number. +// + +#define DD_VDSK_DEVICE_NAME "\\Device\\UNKNOWN" + + +// +// NtDeviceIoControlFile IoControlCode values for this device. +// +// Warning: Remember that the low two bits of the code specify how the +// buffers are passed to the driver! +// + +#define IOCTL_VDSK_BASE FILE_DEVICE_VIRTUAL_DISK + + +// +// NtDeviceIoControlFile InputBuffer/OutputBuffer record structures for +// this device. +// + -- cgit v1.2.3