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

This commit is contained in:
Etaash Mathamsetty 2023-02-12 12:14:17 -05:00 committed by Alexandre Julliard
parent 121ab8bf83
commit 2a069e4a91
2 changed files with 20 additions and 2 deletions

View file

@ -1294,8 +1294,8 @@
@ stdcall -import ReplaceFile(wstr wstr wstr long ptr ptr) ReplaceFileW
@ stdcall ReplaceFileA(str str str long ptr ptr)
@ stdcall -import ReplaceFileW(wstr wstr wstr long ptr ptr)
# @ stub RemoveDirectoryTransactedA
# @ stub RemoveDirectoryTransactedW
@ stdcall RemoveDirectoryTransactedA(str ptr)
@ stdcall RemoveDirectoryTransactedW(wstr ptr)
@ stdcall -import RemoveDllDirectory(ptr)
# @ stub RemoveSecureMemoryCacheCallback
# @ stub ReplacePartitionUnit

View file

@ -262,6 +262,24 @@ DWORD WINAPI DECLSPEC_HOTPATCH GetFileAttributesTransactedW(LPCWSTR name, GET_FI
return GetFileAttributesExW(name, level, ptr);
}
/***********************************************************************
* RemoveDirectoryTransactedA (KERNEL32.@)
*/
BOOL WINAPI DECLSPEC_HOTPATCH RemoveDirectoryTransactedA(LPCSTR path, HANDLE transaction)
{
FIXME("(%s %p): semi-stub\n", debugstr_a(path), transaction);
return RemoveDirectoryA(path);
}
/***********************************************************************
* RemoveDirectoryTransactedW (KERNEL32.@)
*/
BOOL WINAPI DECLSPEC_HOTPATCH RemoveDirectoryTransactedW(LPCWSTR path, HANDLE transaction)
{
FIXME("(%s %p): semi-stub\n", debugstr_w(path), transaction);
return RemoveDirectoryW(path);
}
/**************************************************************************
* MoveFileWithProgressA (KERNEL32.@)
*/