6 Feb
2024
6 Feb
'24
12:04 a.m.
Alfred Agrell (@Alcaro) commented about dlls/kernelbase/file.c:
BOOL ret = FALSE; char *buffer;
+ DWORD flags = params ? params->dwCopyFlags : 0; + BOOL *cancel_ptr = params ? params->pfCancel : NULL; + PCOPYFILE2_PROGRESS_ROUTINE progress = params ? params->pProgressRoutine : NULL; + + if (cancel_ptr) + FIXME("pfCancel is not supported\n"); + if (progress) + FIXME("PCOPYFILE2_PROGRESS_ROUTINE is not supported\n"); + if (!source || !dest) { - SetLastError( ERROR_INVALID_PARAMETER ); + SetLastError( ERROR_PATH_NOT_FOUND );
Is this change intentional? -- https://gitlab.winehq.org/wine/wine/-/merge_requests/5020#note_60123