parent
db3f7a4de7
commit
0c27b315a9
|
@ -15,9 +15,11 @@
|
|||
#include <string.h>
|
||||
#include <time.h>
|
||||
|
||||
#define ctime_r(T,Tm) (localtime_s(Tm,T) ? NULL:Tm)
|
||||
#define localtime_r(T,Tm) (localtime_s(Tm,T) ? NULL:Tm)
|
||||
#ifdef _WIN32
|
||||
|
||||
_WIN32 #define ctime_r(T, Tm)(localtime_s(Tm, T) ? NULL : Tm)
|
||||
#define localtime_r(T, Tm) (localtime_s(Tm, T) ? NULL : Tm)
|
||||
#endif /* ifdef _WIN32 */
|
||||
|
||||
const uint intervalLen = 45; // min
|
||||
const uint pauseLen = 10; //
|
||||
|
|
Loading…
Reference in New Issue