kernel32: Add stub for MoveFileTransacted{A,W}.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=45995 Signed-off-by: Louis Lenders <xerox.xerox2000x@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
920b1371ac
commit
35f62f644d
|
@ -1088,8 +1088,8 @@
|
|||
@ stdcall MoveFileA(str str)
|
||||
@ stdcall MoveFileExA(str str long)
|
||||
@ stdcall MoveFileExW(wstr wstr long)
|
||||
# @ stub MoveFileTransactedA
|
||||
# @ stub MoveFileTransactedW
|
||||
@ stdcall MoveFileTransactedA(str str ptr ptr long ptr)
|
||||
@ stdcall MoveFileTransactedW(wstr wstr ptr ptr long ptr)
|
||||
@ stdcall MoveFileW(wstr wstr)
|
||||
@ stdcall MoveFileWithProgressA(str str ptr ptr long)
|
||||
@ stdcall MoveFileWithProgressW(wstr wstr ptr ptr long)
|
||||
|
|
|
@ -1268,6 +1268,25 @@ BOOL WINAPI CopyFileExA(LPCSTR sourceFilename, LPCSTR destFilename,
|
|||
return ret;
|
||||
}
|
||||
|
||||
/**************************************************************************
|
||||
* MoveFileTransactedA (KERNEL32.@)
|
||||
*/
|
||||
BOOL WINAPI MoveFileTransactedA(const char *source, const char *dest, LPPROGRESS_ROUTINE progress, void *data, DWORD flags, HANDLE handle)
|
||||
{
|
||||
FIXME("(%s, %s, %p, %p, %d, %p)\n", debugstr_a(source), debugstr_a(dest), progress, data, flags, handle);
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/**************************************************************************
|
||||
* MoveFileTransactedW (KERNEL32.@)
|
||||
*/
|
||||
BOOL WINAPI MoveFileTransactedW(const WCHAR *source, const WCHAR *dest, LPPROGRESS_ROUTINE progress, void *data, DWORD flags, HANDLE handle)
|
||||
{
|
||||
FIXME("(%s, %s, %p, %p, %d, %p)\n", debugstr_w(source), debugstr_w(dest), progress, data, flags, handle);
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/**************************************************************************
|
||||
* MoveFileWithProgressW (KERNEL32.@)
|
||||
|
|
|
@ -2425,6 +2425,9 @@ WINBASEAPI BOOL WINAPI MoveFileW(LPCWSTR,LPCWSTR);
|
|||
WINBASEAPI BOOL WINAPI MoveFileExA(LPCSTR,LPCSTR,DWORD);
|
||||
WINBASEAPI BOOL WINAPI MoveFileExW(LPCWSTR,LPCWSTR,DWORD);
|
||||
#define MoveFileEx WINELIB_NAME_AW(MoveFileEx)
|
||||
WINBASEAPI BOOL WINAPI MoveFileTransactedA(const char*,const char*,LPPROGRESS_ROUTINE,void*,DWORD,HANDLE);
|
||||
WINBASEAPI BOOL WINAPI MoveFileTransactedW(const WCHAR*,const WCHAR*,LPPROGRESS_ROUTINE,void*,DWORD,HANDLE);
|
||||
#define MoveFileTransacted WINELIB_NAME_AW(MoveFiletransacted)
|
||||
WINBASEAPI BOOL WINAPI MoveFileWithProgressA(LPCSTR,LPCSTR,LPPROGRESS_ROUTINE,LPVOID,DWORD);
|
||||
WINBASEAPI BOOL WINAPI MoveFileWithProgressW(LPCWSTR,LPCWSTR,LPPROGRESS_ROUTINE,LPVOID,DWORD);
|
||||
#define MoveFileWithProgress WINELIB_NAME_AW(MoveFileWithProgress)
|
||||
|
|
Loading…
Reference in New Issue