ntdll: Implement RtlReleaseRelativeName.
Signed-off-by: Stefan Leichter <sle85276@gmx.de> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
455ccf4baa
commit
c35b5b6dae
|
@ -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)
|
||||||
|
|
|
@ -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
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in New Issue