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
1b3f61d7
Commit
1b3f61d7
authored
Sep 18, 2022
by
Gijs Vermeulen
Committed by
Alexandre Julliard
Sep 19, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Add RtlDosPathNameToRelativeNtPathName_U.
Wine-Bug:
https://bugs.winehq.org/show_bug.cgi?id=53700
parent
1ceba353
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
0 deletions
+10
-0
ntdll.spec
dlls/ntdll/ntdll.spec
+1
-0
path.c
dlls/ntdll/path.c
+9
-0
No files found.
dlls/ntdll/ntdll.spec
View file @
1b3f61d7
...
...
@@ -621,6 +621,7 @@
# @ stub RtlDosApplyFileIsolationRedirection_Ustr
@ stdcall RtlDosPathNameToNtPathName_U(wstr ptr ptr ptr)
@ stdcall RtlDosPathNameToNtPathName_U_WithStatus(wstr ptr ptr ptr)
@ stdcall RtlDosPathNameToRelativeNtPathName_U(wstr ptr ptr ptr)
@ stdcall RtlDosPathNameToRelativeNtPathName_U_WithStatus(wstr ptr ptr ptr)
@ stdcall RtlDosSearchPath_U(wstr wstr wstr long ptr ptr)
# @ stub RtlDosSearchPath_Ustr
...
...
dlls/ntdll/path.c
View file @
1b3f61d7
...
...
@@ -331,6 +331,15 @@ NTSTATUS WINAPI RtlDosPathNameToRelativeNtPathName_U_WithStatus(const WCHAR *dos
}
/**************************************************************************
* RtlDosPathNameToRelativeNtPathName_U [NTDLL.@]
*/
BOOLEAN
WINAPI
RtlDosPathNameToRelativeNtPathName_U
(
const
WCHAR
*
dos_path
,
UNICODE_STRING
*
ntpath
,
WCHAR
**
file_part
,
RTL_RELATIVE_NAME
*
relative
)
{
return
RtlDosPathNameToRelativeNtPathName_U_WithStatus
(
dos_path
,
ntpath
,
file_part
,
relative
)
==
STATUS_SUCCESS
;
}
/**************************************************************************
* RtlReleaseRelativeName [NTDLL.@]
*/
void
WINAPI
RtlReleaseRelativeName
(
RTL_RELATIVE_NAME
*
relative
)
...
...
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