Commit e6f0b72d authored by Bertho Stultiens's avatar Bertho Stultiens Committed by Alexandre Julliard

Added IOCTL function 0x440d/0x72.

parent 77f08f33
......@@ -345,6 +345,12 @@ static BOOL ioctlGenericBlkDevReq( CONTEXT *context )
dataptr[3] = 0xFF; /* no physical drive */
break;
case 0x72:
/* Trail on error implementation */
AX_reg(context) = GetDriveType16(BL_reg(context)) == DRIVE_CANNOTDETERMINE ? 0x0f : 0x01;
SET_CFLAG(context); /* Seems to be set all the time */
break;
default:
INT_BARF( context, 0x21 );
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment