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