#ifndef _NTIOAPI_H
#define IOCTL_MOUNTMGR_DELETE_POINTS_DBONLY CTL_CODE(MOUNTMGRCONTROLTYPE, 3, METHOD_BUFFERED, FILE_READ_ACCESS | FILE_WRITE_ACCESS)
View code on GitHub// mountmgr.h
// CTL_CODE(0x006d, 0x003, METHOD_BUFFERED, FILE_READ_ACCESS | FILE_WRITE_ACCESS)
#define IOCTL_MOUNTMGR_DELETE_POINTS_DBONLY 0x006DC00C
View the official Windows Driver Kit DDI referenceThis IOCTL is documented in Windows Driver Kit.
This IOCTL is identical in input and output to IOCTL_MOUNTMGR_QUERY_POINTS. The difference is that IOCTL_MOUNTMGR_DELETE_POINTS_DBONLY has the side effect of deleting the mount manager database entries for the triples returned. However, the mount manager does not delete the symbolic links corresponding to the database entries.
If the input to this IOCTL is ("\DosDevices\X:", NULL, NULL), where X is the current drive letter for the volume indicated in the input triple, the mount manager adds a special entry to its database indicating that the client does not require a drive letter. On subsequent reboots, the mount manager will not assign a default drive letter to the volume.
See IOCTL_MOUNTMGR_QUERY_POINTS.
See IOCTL_MOUNTMGR_QUERY_POINTS.
See IOCTL_MOUNTMGR_QUERY_POINTS.
See IOCTL_MOUNTMGR_QUERY_POINTS.
N/A
N/A
See IOCTL_MOUNTMGR_QUERY_POINTS.
For more information, see Supporting Mount Manager Requests in a Storage Class Driver.