Function 4411h Query IOCTL Device DOS 5.0+
Determines whether the specified IOCTL function is supported by
the given drive.
Entry AX = 4411h
BL = Drive number (0 = default, 1 = A, etc.)
CH = 08h (device category, must be 8)
CL = Function (function 440Dh minor code):
| 40h Set device parameters
| 41h Write track on logical drive
| 42h Format track on logical drive
| 46h Set media ID
| 60h Get device parameters
| 61h Read track on logical drive
| 62h Verify track on logical drive
| 66h Get media ID
| 68h Sense media ID
Return Nothing (CF clear)
or
AX = Error code, if CF is set
| 01h Invalid function
| 05h Access denied
| 0Fh Invalid drive
──────────────────────────────────────────────────────────────────
This function returns an error value of 1 (invalid function) if
the device driver has no support for IOCTL functions, 5 (access
denied) if the driver supports IOCTL functions but does not
support the specified IOCTL.