我正在尝试实现此页面中给出的代码
http://msdn.microsoft.com/en-us/library/windows/desktop/aa366062%28v=vs.85%29.aspx
我正在使用 mingw (gcc) 来编译它。但以下行无法编译。我已经包括了'time.h'。我搜索但无法在 gcc 中找到此“_localtime31_s”或其等效项。
error = _localtime32_s(&newtime, (__time32_t*) &pAdapter->LeaseObtained);
error = asctime_s(buffer, 32, &newtime);
这里的时间函数在哪里?谢谢