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?