kernel32: Add semi-stub for DeleteFileTransactedA/W().

This commit is contained in:
Etaash Mathamsetty 2023-02-12 12:03:28 -05:00 committed by Alexandre Julliard
parent 960526dad1
commit 4de32bc980
2 changed files with 20 additions and 2 deletions

View file

@ -367,8 +367,8 @@
@ stdcall DeleteCriticalSection(ptr) NTDLL.RtlDeleteCriticalSection
@ stdcall -import DeleteFiber(ptr)
@ stdcall -import DeleteFileA(str)
# @ stub DeleteFileTransactedA
# @ stub DeleteFileTransactedW
@ stdcall DeleteFileTransactedA(str ptr)
@ stdcall DeleteFileTransactedW(wstr ptr)
@ stdcall -import DeleteFileW(wstr)
@ stdcall -import DeleteProcThreadAttributeList(ptr)
# @ stub DisableThreadProfiling

View file

@ -203,6 +203,24 @@ BOOL WINAPI DECLSPEC_HOTPATCH CreateDirectoryTransactedW(LPCWSTR template, LPCWS
return CreateDirectoryExW(template, path, sa);
}
/***********************************************************************
* DeleteFileTransactedA (KERNEL32.@)
*/
BOOL WINAPI DECLSPEC_HOTPATCH DeleteFileTransactedA(LPCSTR path, HANDLE transaction)
{
FIXME("(%s %p): semi-stub\n", debugstr_a(path), transaction);
return DeleteFileA(path);
}
/***********************************************************************
* DeleteFileTransactedW (KERNEL32.@)
*/
BOOL WINAPI DECLSPEC_HOTPATCH DeleteFileTransactedW(LPCWSTR path, HANDLE transaction)
{
FIXME("(%s %p): semi-stub\n", debugstr_w(path), transaction);
return DeleteFileW(path);
}
/**************************************************************************
* MoveFileWithProgressA (KERNEL32.@)
*/