// mountdev.h
// CTL_CODE(0x004d, 0x005, METHOD_BUFFERED, FILE_READ_ACCESS | FILE_WRITE_ACCESS)
#define IOCTL_MOUNTDEV_LINK_DELETED 0x004DC014
View the official Windows Driver Kit DDI referenceNo description available.
IOCTL_MOUNTDEV_LINK_DELETED alerts the mount manager client that a persistent name associated with it has been deleted.
Support for this IOCTL by mount manager clients is optional.
The mount manager places a variable-length structure of type MOUNTDEV_NAME at the beginning of the buffer at Irp->AssociatedIrp.SystemBuffer. The mount manager inserts the persistent name just assigned at the address pointed to by the Name member of this structure.
Parameters.DeviceIoControl.InputBufferLength in the I/O stack location of the IRP indicates the size, in bytes, of the input buffer, which must be greater than or equal to sizeof(MOUNTDEV_NAME).
None.
None.
N/A
N/A
No status.
The implementer of this function must not thread synchronize and must not make blocking and/or Interprocess Communication (IPC) function calls.
For more information, see Supporting Mount Manager Requests in a Storage Class Driver.