mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 09:50:52 +00:00
ioctl 440F only returns non mapped drives (for now).
This commit is contained in:
parent
45885d136c
commit
9577e5e296
1 changed files with 4 additions and 13 deletions
|
@ -2627,19 +2627,10 @@ static void INT21_Ioctl_Block( CONTEXT86 *context )
|
|||
break;
|
||||
|
||||
case 0x0f: /* SET LOGICAL DRIVE MAP */
|
||||
{
|
||||
WCHAR dev[3], tgt[4];
|
||||
|
||||
TRACE("IOCTL - SET LOGICAL DRIVE MAP for drive %s\n",
|
||||
INT21_DriveName( BL_reg(context)));
|
||||
dev[0] = 'A' + drive; dev[1] = ':'; dev[2] = 0;
|
||||
tgt[0] = 'A' + drive + 1; tgt[1] = ':'; tgt[2] = '\\'; tgt[3] = 0;
|
||||
if (!DefineDosDeviceW(DDD_RAW_TARGET_PATH, dev, tgt))
|
||||
{
|
||||
SET_CFLAG(context);
|
||||
SET_AX( context, 0x000F ); /* invalid drive */
|
||||
}
|
||||
}
|
||||
TRACE("IOCTL - SET LOGICAL DRIVE MAP for drive %s\n",
|
||||
INT21_DriveName( BL_reg(context)));
|
||||
/* FIXME: as of today, we don't support logical drive mapping... */
|
||||
SET_AL( context, 0 );
|
||||
break;
|
||||
|
||||
case 0x11: /* QUERY GENERIC IOCTL CAPABILITY */
|
||||
|
|
Loading…
Reference in a new issue