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
63c19ab4
Commit
63c19ab4
authored
Nov 20, 2010
by
Hans Leidekker
Committed by
Alexandre Julliard
Nov 23, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Add a stub implementation of FSCTL_GET_RETRIEVAL_POINTERS.
parent
40894dab
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
31 additions
and
0 deletions
+31
-0
file.c
dlls/ntdll/file.c
+22
-0
winioctl.h
include/winioctl.h
+9
-0
No files found.
dlls/ntdll/file.c
View file @
63c19ab4
...
...
@@ -1495,6 +1495,28 @@ NTSTATUS WINAPI NtFsControlFile(HANDLE handle, HANDLE event, PIO_APC_ROUTINE apc
status
=
STATUS_SUCCESS
;
break
;
case
FSCTL_GET_RETRIEVAL_POINTERS
:
{
RETRIEVAL_POINTERS_BUFFER
*
buffer
=
(
RETRIEVAL_POINTERS_BUFFER
*
)
out_buffer
;
FIXME
(
"stub: FSCTL_GET_RETRIEVAL_POINTERS
\n
"
);
if
(
out_size
>=
sizeof
(
RETRIEVAL_POINTERS_BUFFER
))
{
buffer
->
ExtentCount
=
1
;
buffer
->
StartingVcn
.
QuadPart
=
1
;
buffer
->
Extents
[
0
].
NextVcn
.
QuadPart
=
0
;
buffer
->
Extents
[
0
].
Lcn
.
QuadPart
=
0
;
io
->
Information
=
sizeof
(
RETRIEVAL_POINTERS_BUFFER
);
status
=
STATUS_SUCCESS
;
}
else
{
io
->
Information
=
0
;
status
=
STATUS_BUFFER_TOO_SMALL
;
}
break
;
}
case
FSCTL_PIPE_LISTEN
:
case
FSCTL_PIPE_WAIT
:
default:
...
...
include/winioctl.h
View file @
63c19ab4
...
...
@@ -376,6 +376,15 @@ typedef struct _VOLUME_DISK_EXTENTS {
DISK_EXTENT
Extents
[
1
];
}
VOLUME_DISK_EXTENTS
;
typedef
struct
RETRIEVAL_POINTERS_BUFFER
{
DWORD
ExtentCount
;
LARGE_INTEGER
StartingVcn
;
struct
{
LARGE_INTEGER
NextVcn
;
LARGE_INTEGER
Lcn
;
}
Extents
[
1
];
}
RETRIEVAL_POINTERS_BUFFER
,
*
PRETRIEVAL_POINTERS_BUFFER
;
/* End: _WIN32_WINNT >= 0x0400 */
/*
...
...
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