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
aa2851f1
Commit
aa2851f1
authored
Mar 12, 2022
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
Mar 22, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernelbase: Trace not supported flags in CopyFileExW.
Signed-off-by:
Alistair Leslie-Hughes
<
leslie_alistair@hotmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
dcfd15ff
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
+7
-0
file.c
dlls/kernelbase/file.c
+7
-0
No files found.
dlls/kernelbase/file.c
View file @
aa2851f1
...
...
@@ -518,6 +518,13 @@ BOOL WINAPI CopyFileExW( const WCHAR *source, const WCHAR *dest, LPPROGRESS_ROUT
TRACE
(
"%s -> %s, %lx
\n
"
,
debugstr_w
(
source
),
debugstr_w
(
dest
),
flags
);
if
(
flags
&
COPY_FILE_RESTARTABLE
)
FIXME
(
"COPY_FILE_RESTARTABLE is not supported
\n
"
);
if
(
flags
&
COPY_FILE_COPY_SYMLINK
)
FIXME
(
"COPY_FILE_COPY_SYMLINK is not supported
\n
"
);
if
(
flags
&
COPY_FILE_OPEN_SOURCE_FOR_WRITE
)
FIXME
(
"COPY_FILE_OPEN_SOURCE_FOR_WRITE is not supported
\n
"
);
if
((
h1
=
CreateFileW
(
source
,
GENERIC_READ
,
FILE_SHARE_READ
|
FILE_SHARE_WRITE
|
FILE_SHARE_DELETE
,
NULL
,
OPEN_EXISTING
,
0
,
0
))
==
INVALID_HANDLE_VALUE
)
{
...
...
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