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
c35b5b6d
Commit
c35b5b6d
authored
Jun 11, 2018
by
Stefan Leichter
Committed by
Alexandre Julliard
Jun 11, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Implement RtlReleaseRelativeName.
Signed-off-by:
Stefan Leichter
<
sle85276@gmx.de
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
455ccf4b
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
0 deletions
+8
-0
ntdll.spec
dlls/ntdll/ntdll.spec
+1
-0
path.c
dlls/ntdll/path.c
+7
-0
No files found.
dlls/ntdll/ntdll.spec
View file @
c35b5b6d
...
...
@@ -845,6 +845,7 @@
@ stdcall RtlReleaseActivationContext(ptr)
@ stub RtlReleaseMemoryStream
@ stdcall RtlReleasePebLock()
@ stdcall RtlReleaseRelativeName(ptr)
@ stdcall RtlReleaseResource(ptr)
@ stdcall RtlReleaseSRWLockExclusive(ptr)
@ stdcall RtlReleaseSRWLockShared(ptr)
...
...
dlls/ntdll/path.c
View file @
c35b5b6d
...
...
@@ -457,6 +457,13 @@ NTSTATUS WINAPI RtlDosPathNameToRelativeNtPathName_U_WithStatus(const WCHAR *dos
return
RtlDosPathNameToNtPathName_U_WithStatus
(
dos_path
,
ntpath
,
file_part
,
NULL
);
}
/**************************************************************************
* RtlReleaseRelativeName [NTDLL.@]
*/
void
WINAPI
RtlReleaseRelativeName
(
RTL_RELATIVE_NAME
*
relative
)
{
}
/******************************************************************
* RtlDosSearchPath_U
*
...
...
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