Commit 72662305 authored by Alexandre Julliard's avatar Alexandre Julliard

ntdll: Partially implement RtlRandomEx().

parent a0050be1
......@@ -839,7 +839,7 @@
@ stdcall -norelay RtlRaiseException(ptr)
@ stdcall RtlRaiseStatus(long)
@ stdcall RtlRandom(ptr)
@ stub RtlRandomEx
@ stdcall RtlRandomEx(ptr)
@ stdcall RtlReAllocateHeap(long long ptr long)
@ stub RtlReadMemoryStream
@ stub RtlReadOutOfProcessMemoryStream
......
......@@ -753,6 +753,15 @@ ULONG WINAPI RtlRandom (PULONG seed)
/*************************************************************************
* RtlRandomEx [NTDLL.@]
*/
ULONG WINAPI RtlRandomEx( ULONG *seed )
{
WARN( "semi-stub: should use a different algorithm\n" );
return RtlRandom( seed );
}
/*************************************************************************
* RtlAreAllAccessesGranted [NTDLL.@]
*
* Check if all desired accesses are granted
......
......@@ -1144,7 +1144,7 @@
@ stdcall RtlQueryTimeZoneInformation(ptr)
@ stdcall -norelay RtlRaiseException(ptr)
@ stdcall RtlRandom(ptr)
@ stub RtlRandomEx
@ stdcall RtlRandomEx(ptr)
@ stub RtlRealPredecessor
@ stub RtlRealSuccessor
@ stub RtlRemoveUnicodePrefix
......
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