Updates an RNG seed file.
Public Declare Function RNG_UpdateSeedFile Lib "diCryptoSys.dll" (ByVal strSeedFile As String, ByVal nOptions As Long) As Long
nRet = RNG_UpdateSeedFile(strSeedFile, nOptions)
String specifying the seed file to be updated.Long option flags: not used in this release. Specify zero.
long _stdcall RNG_UpdateSeedFile(const char *szSeedFile, long nOptions);
Long: If successful, the return value is zero; otherwise it returns a non-zero error code.
The seed file must be writable by the user. Use this function at periodic intervals or when exiting your application.
See the example in RNG_Initialize.
RNG_Initialize
RNG_MakeSeedFile