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
d4913468
Commit
d4913468
authored
Jan 31, 2011
by
Hans Leidekker
Committed by
Alexandre Julliard
Jan 31, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mountmgr: Add a stub implementation of ioctl 0x560000.
parent
8bf1940c
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
0 deletions
+10
-0
device.c
dlls/mountmgr.sys/device.c
+10
-0
No files found.
dlls/mountmgr.sys/device.c
View file @
d4913468
...
...
@@ -896,6 +896,16 @@ static NTSTATUS WINAPI harddisk_ioctl( DEVICE_OBJECT *device, IRP *irp )
case
IOCTL_CDROM_READ_TOC
:
irp
->
IoStatus
.
u
.
Status
=
STATUS_INVALID_DEVICE_REQUEST
;
break
;
case
0x560000
:
{
DWORD
len
=
min
(
32
,
irpsp
->
Parameters
.
DeviceIoControl
.
OutputBufferLength
);
FIXME
(
"returning zero-filled buffer for ioctl 0x560000
\n
"
);
memset
(
irp
->
MdlAddress
->
StartVa
,
0
,
len
);
irp
->
IoStatus
.
Information
=
len
;
irp
->
IoStatus
.
u
.
Status
=
STATUS_SUCCESS
;
break
;
}
default:
FIXME
(
"unsupported ioctl %x
\n
"
,
irpsp
->
Parameters
.
DeviceIoControl
.
IoControlCode
);
irp
->
IoStatus
.
u
.
Status
=
STATUS_NOT_SUPPORTED
;
...
...
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