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
69cff16d
Commit
69cff16d
authored
Oct 27, 2022
by
Nikolay Sivov
Committed by
Alexandre Julliard
Oct 31, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernelbase: Forward some more classes in GetFileInformationByHandleEx().
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
parent
f054d2ab
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
3 deletions
+12
-3
file.c
dlls/kernelbase/file.c
+12
-3
No files found.
dlls/kernelbase/file.c
View file @
69cff16d
...
...
@@ -2964,11 +2964,8 @@ BOOL WINAPI DECLSPEC_HOTPATCH GetFileInformationByHandleEx( HANDLE handle, FILE_
switch
(
class
)
{
case
FileStreamInfo
:
case
FileCompressionInfo
:
case
FileRemoteProtocolInfo
:
case
FileStorageInfo
:
case
FileAlignmentInfo
:
case
FileDispositionInfoEx
:
case
FileRenameInfoEx
:
case
FileCaseSensitiveInfo
:
...
...
@@ -2977,6 +2974,18 @@ BOOL WINAPI DECLSPEC_HOTPATCH GetFileInformationByHandleEx( HANDLE handle, FILE_
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
case
FileStreamInfo
:
status
=
NtQueryInformationFile
(
handle
,
&
io
,
info
,
size
,
FileStreamInformation
);
break
;
case
FileCompressionInfo
:
status
=
NtQueryInformationFile
(
handle
,
&
io
,
info
,
size
,
FileCompressionInformation
);
break
;
case
FileAlignmentInfo
:
status
=
NtQueryInformationFile
(
handle
,
&
io
,
info
,
size
,
FileAlignmentInformation
);
break
;
case
FileAttributeTagInfo
:
status
=
NtQueryInformationFile
(
handle
,
&
io
,
info
,
size
,
FileAttributeTagInformation
);
break
;
...
...
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