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
ddeab7e5
Commit
ddeab7e5
authored
Sep 29, 2014
by
Andreas Fuchs
Committed by
Alexandre Julliard
Sep 29, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Ignore flags on FindFirstFileExW.
parent
e47ff906
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
+6
-3
file.c
dlls/kernel32/file.c
+6
-3
No files found.
dlls/kernel32/file.c
View file @
ddeab7e5
...
...
@@ -1865,10 +1865,13 @@ HANDLE WINAPI FindFirstFileExW( LPCWSTR filename, FINDEX_INFO_LEVELS level,
TRACE
(
"%s %d %p %d %p %x
\n
"
,
debugstr_w
(
filename
),
level
,
data
,
search_op
,
filter
,
flags
);
if
((
search_op
!=
FindExSearchNameMatch
&&
search_op
!=
FindExSearchLimitToDirectories
)
||
flags
!=
0
)
if
(
flags
!=
0
)
{
FIXME
(
"options not implemented 0x%08x 0x%08x
\n
"
,
search_op
,
flags
);
FIXME
(
"flags not implemented 0x%08x
\n
"
,
flags
);
}
if
(
search_op
!=
FindExSearchNameMatch
&&
search_op
!=
FindExSearchLimitToDirectories
)
{
FIXME
(
"search_op not implemented 0x%08x
\n
"
,
search_op
);
return
INVALID_HANDLE_VALUE
;
}
if
(
level
!=
FindExInfoStandard
)
...
...
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