Commit c35b5b6d authored by Stefan Leichter's avatar Stefan Leichter Committed by Alexandre Julliard

ntdll: Implement RtlReleaseRelativeName.

parent 455ccf4b
...@@ -845,6 +845,7 @@ ...@@ -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 ...@@ -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
* *
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment