Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than Constants, prefix the name with the module name and a period.
IOCTL_DISK_GET_DRIVE_LAYOUT_EX (Constants)
.
Summary
C# Constants:
const uint IOCTL_DISK_GET_DRIVE_LAYOUT_EX = 0x00070050;
Alternative C# Constants:
private const uint FILE_DEVICE_DISK = 0x00000007;
private const uint IOCTL_DISK_BASE = FILE_DEVICE_DISK;
private const uint METHOD_BUFFERED = 0;
private const uint FILE_ANY_ACCESS = 0;
private static readonly uint IOCTL_DISK_GET_DRIVE_LAYOUT_EX = CtlCode(IOCTL_DISK_BASE, 0x0014, METHOD_BUFFERED, FILE_ANY_ACCESS);
private static uint CtlCode(uint deviceType, uint function, uint method, uint access)
{
return ((deviceType) << 16) | ((access) << 14) | ((function) << 2) | (method);
}
VB Constants:
TODO
Notes:
C++ Header file: WinIoCtl .h
Contains extended information about a drive's partitions. Used with DeviceIoControl and IOCTL_DISK_GET_DRIVE_LAYOUT_EX to fill.
12/10/2013 10:12:58 AM - -107.1.64.82
Click to read this page 1/3/2011 4:08:22 PM - -217.132.42.78
Please edit this page!
Do you have...
helpful tips?
corrections to the existing content?
additional languages you want to include?
Select "Edit This Page" on the right hand toolbar and edit it!