Random32 PROC

   Generates an unsigned pseudo-random 32-bit integer in the range of 0 through FFFFFFFFh.

Call args:  None

Return arg: EAX = random (0 to FFFFFFFFh)

Example:

.data
ranNum DWORD ?

.code
       call Random32
       mov  ranNum,eax  ;save
Notes: To re-seed the random number generator, use the Randomize procedure.
       To specify a range for the random number, use the RandomRange procedure.
Converted from CHM to HTML with chm2web Pro 2.85 (unicode)