Commit 1c028841 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

ntdll: Provide RtlInitUnicodeString for unixlibs.

parent 62e51da2
......@@ -2357,6 +2357,15 @@ NTSTATUS WINAPI RtlUnicodeToUTF8N( char *dst, DWORD dstlen, DWORD *reslen, const
}
/**********************************************************************
* RtlInitUnicodeString (ntdll.so)
*/
void WINAPI RtlInitUnicodeString( UNICODE_STRING *str, const WCHAR *data )
{
if (data) init_unicode_string( str, data );
else str->Length = str->MaximumLength = 0;
}
/**********************************************************************
* RtlNtStatusToDosError (ntdll.so)
*/
ULONG WINAPI RtlNtStatusToDosError( NTSTATUS status )
......
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