Re: [PATCH v7 0/1] MR1444: kernel32: Unstub MoveFileTransactedW, Use MoveFileWithProgressW
26 Jan
2023
26 Jan
'23
8:51 p.m.
Etaash Mathamsetty (@etaash.mathamsetty) commented about dlls/kernel32/path.c:
*/ BOOL WINAPI MoveFileTransactedW(const WCHAR *source, const WCHAR *dest, LPPROGRESS_ROUTINE progress, void *data, DWORD flags, HANDLE handle) { - FIXME("(%s, %s, %p, %p, %ld, %p)\n", debugstr_w(source), debugstr_w(dest), progress, data, flags, handle); - SetLastError(ERROR_CALL_NOT_IMPLEMENTED); - return FALSE; + TRACE("(%s, %s, %p, %p, %ld, %p)\n", debugstr_w(source), debugstr_w(dest), progress, data, flags, handle); + if (handle) { the transaction parameter isn't optional, so I would just print a FIXME saying that this is a semi-stub instead
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/1444#note_22057
1134
Age (days ago)
1134
Last active (days ago)
0 comments
1 participants
participants (1)
-
Etaash Mathamsetty (@etaash.mathamsetty)