ntdll: Partially implement RtlRandomEx().
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
a0050be13f
commit
72662305b3
|
@ -839,7 +839,7 @@
|
||||||
@ stdcall -norelay RtlRaiseException(ptr)
|
@ stdcall -norelay RtlRaiseException(ptr)
|
||||||
@ stdcall RtlRaiseStatus(long)
|
@ stdcall RtlRaiseStatus(long)
|
||||||
@ stdcall RtlRandom(ptr)
|
@ stdcall RtlRandom(ptr)
|
||||||
@ stub RtlRandomEx
|
@ stdcall RtlRandomEx(ptr)
|
||||||
@ stdcall RtlReAllocateHeap(long long ptr long)
|
@ stdcall RtlReAllocateHeap(long long ptr long)
|
||||||
@ stub RtlReadMemoryStream
|
@ stub RtlReadMemoryStream
|
||||||
@ stub RtlReadOutOfProcessMemoryStream
|
@ stub RtlReadOutOfProcessMemoryStream
|
||||||
|
|
|
@ -752,6 +752,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.@]
|
* RtlAreAllAccessesGranted [NTDLL.@]
|
||||||
*
|
*
|
||||||
|
|
|
@ -1144,7 +1144,7 @@
|
||||||
@ stdcall RtlQueryTimeZoneInformation(ptr)
|
@ stdcall RtlQueryTimeZoneInformation(ptr)
|
||||||
@ stdcall -norelay RtlRaiseException(ptr)
|
@ stdcall -norelay RtlRaiseException(ptr)
|
||||||
@ stdcall RtlRandom(ptr)
|
@ stdcall RtlRandom(ptr)
|
||||||
@ stub RtlRandomEx
|
@ stdcall RtlRandomEx(ptr)
|
||||||
@ stub RtlRealPredecessor
|
@ stub RtlRealPredecessor
|
||||||
@ stub RtlRealSuccessor
|
@ stub RtlRealSuccessor
|
||||||
@ stub RtlRemoveUnicodePrefix
|
@ stub RtlRemoveUnicodePrefix
|
||||||
|
|
Loading…
Reference in New Issue