Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
2a069e4a
Commit
2a069e4a
authored
Feb 12, 2023
by
Etaash Mathamsetty
Committed by
Alexandre Julliard
Mar 31, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Add semi-stub for RemoveDirectoryTransactedA/W().
parent
121ab8bf
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
2 deletions
+20
-2
kernel32.spec
dlls/kernel32/kernel32.spec
+2
-2
path.c
dlls/kernel32/path.c
+18
-0
No files found.
dlls/kernel32/kernel32.spec
View file @
2a069e4a
...
...
@@ -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
...
...
dlls/kernel32/path.c
View file @
2a069e4a
...
...
@@ -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.@)
*/
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment