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
4de32bc9
Commit
4de32bc9
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 DeleteFileTransactedA/W().
parent
960526da
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 @
4de32bc9
...
...
@@ -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
...
...
dlls/kernel32/path.c
View file @
4de32bc9
...
...
@@ -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.@)
*/
...
...
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