摘要:
这两天在做平台移植,程序从windows平台移植到linux下运行,着实麻烦哦~时间获取部分:localtime_s和localtime_r的参数是相反的,囧。。。。#ifndef linux localtime_s(&tm_now,&tNow);#else localtime_r(&tNow,&tm_now);#endif 对于systemtime 和tm 以及time_t 的转换// 功能: linux版的GetLocalTime获取本地时间void GetLocalTime(SYSTEMTIME* lpSystemTime){ struct timeval
阅读全文