Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 137 of file random.c.
Referenced by CreateRandomSid(), and get_cred_mgr_encryption_key().
{ ULONG Result; /* Generate the random number */ Result = (*Seed * 0x7fffffed + 0x7fffffc3) % MAXLONG; /* Return it */ *Seed = Result; return Result; }