Commit 4de32bc9 authored by Etaash Mathamsetty's avatar Etaash Mathamsetty Committed by Alexandre Julliard

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

parent 960526da
......@@ -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
......
......@@ -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.@)
*/
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment