1 | #pragma once |
---|---|
2 | |
3 | #include "config.h" |
4 | #include "dss.h" |
5 | |
6 | #ifdef __cplusplus |
7 | extern "C"{ |
8 | #endif |
9 | |
10 | DSS_HUGE AdvanceRand64(DSS_HUGE nSeed, DSS_HUGE nCount); |
11 | void dss_random64(DSS_HUGE *tgt, DSS_HUGE nLow, DSS_HUGE nHigh, long stream); |
12 | DSS_HUGE NextRand64(DSS_HUGE nSeed); |
13 | |
14 | #ifdef __cplusplus |
15 | }; |
16 | #endif |
17 |