You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

20 lines
340 B

/** @file
*
* An implementation of the MSVCRT random number generator for codec_encode().
*/
#include "miniwin.h"
#include "stubs.h"
unsigned int rand_state = 1;
int rand_miniwin(void)
{
rand_state = rand_state * 214013 + 2531011;
return (rand_state >> 16) & 0x7FFF;
}
void srand_miniwin(unsigned int seed)
{
rand_state = seed;
}