Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
9577e5e2
Commit
9577e5e2
authored
Oct 17, 2005
by
Eric Pouech
Committed by
Alexandre Julliard
Oct 17, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ioctl 440F only returns non mapped drives (for now).
parent
45885d13
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
13 deletions
+4
-13
int21.c
dlls/winedos/int21.c
+4
-13
No files found.
dlls/winedos/int21.c
View file @
9577e5e2
...
...
@@ -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 */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment