I'm trying to call the srand function in the msvcrt.dll.
It is defined as
void srand(
unsigned int seed
);
My sample code is:
Local $aResult
Local $h_DLL = DllOpen("msvcrt.dll")
If $h_DLL <> -1 Then
Local $uint = DllStructCreate("uint")
DllStructSetData($uint, 1, 54321)...