// svdrand.h -- Random Numbers. // // $Id: svdrand.h,v 1.6 2006/01/01 18:20:57 sdennis Exp $ // // Random Numbers based on algorithms presented in "Numerical Recipes in C", // Cambridge Press, 1992. // #ifndef SVDRAND_H #define SVDRAND_H void SeedRandomNumberGenerator(void); double RandomFloat(double flLow, double flHigh); INT32 RandomINT32(INT32 lLow, INT32 lHigh); #ifdef WIN32 extern bool bCryptoAPI; #endif #endif // SVDRAND_H