implemented: #define localtime_r(T,Tm) (localtime_s(Tm,T) ? NULL:Tm)
#define ctime_r(T,Tm) (localtime_s(Tm,T) ? NULL:Tm)bugfix
parent
10a36c4a88
commit
db3f7a4de7
|
@ -15,6 +15,10 @@
|
|||
#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)
|
||||
|
||||
|
||||
const uint intervalLen = 45; // min
|
||||
const uint pauseLen = 10; //
|
||||
|
||||
|
|
Loading…
Reference in New Issue