ntdll: Implement RtlReleaseRelativeName.

Signed-off-by: Stefan Leichter <sle85276@gmx.de>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Stefan Leichter 2018-06-11 10:27:37 +02:00 committed by Alexandre Julliard
parent 455ccf4baa
commit c35b5b6dae
2 changed files with 8 additions and 0 deletions

View File

@ -845,6 +845,7 @@
@ stdcall RtlReleaseActivationContext(ptr) @ stdcall RtlReleaseActivationContext(ptr)
@ stub RtlReleaseMemoryStream @ stub RtlReleaseMemoryStream
@ stdcall RtlReleasePebLock() @ stdcall RtlReleasePebLock()
@ stdcall RtlReleaseRelativeName(ptr)
@ stdcall RtlReleaseResource(ptr) @ stdcall RtlReleaseResource(ptr)
@ stdcall RtlReleaseSRWLockExclusive(ptr) @ stdcall RtlReleaseSRWLockExclusive(ptr)
@ stdcall RtlReleaseSRWLockShared(ptr) @ stdcall RtlReleaseSRWLockShared(ptr)

View File

@ -457,6 +457,13 @@ NTSTATUS WINAPI RtlDosPathNameToRelativeNtPathName_U_WithStatus(const WCHAR *dos
return RtlDosPathNameToNtPathName_U_WithStatus(dos_path, ntpath, file_part, NULL); return RtlDosPathNameToNtPathName_U_WithStatus(dos_path, ntpath, file_part, NULL);
} }
/**************************************************************************
* RtlReleaseRelativeName [NTDLL.@]
*/
void WINAPI RtlReleaseRelativeName(RTL_RELATIVE_NAME *relative)
{
}
/****************************************************************** /******************************************************************
* RtlDosSearchPath_U * RtlDosSearchPath_U
* *