码迷,mamicode.com
首页 > 其他好文 > 详细

SYSTEMTIME 与 time_t 互转函数

时间:2014-07-22 23:02:34      阅读:599      评论:0      收藏:0      [点我收藏+]

标签:blog   os   2014   re   c   ar   

time_t SystemTimeToTime_t( const SYSTEMTIME& st )
{
    tm temptm = {st.wSecond, 
        st.wMinute, 
        st.wHour, 
        st.wDay, 
        st.wMonth - 1, 
        st.wYear - 1900, 
        st.wDayOfWeek, 
        0, 
        0};
    return mktime(&temptm);
}

SYSTEMTIME Time_tToSystemTime(time_t t)
{
    //tm temptm = *localtime_s(&t);
    tm temptm;
    localtime_s(&temptm,&t);
    SYSTEMTIME st = {1900 + temptm.tm_year, 
        1 + temptm.tm_mon, 
        temptm.tm_wday, 
        temptm.tm_mday, 
        temptm.tm_hour, 
        temptm.tm_min, 
        temptm.tm_sec, 
        0};
    return st;
}

SYSTEMTIME 与 time_t 互转函数,码迷,mamicode.com

SYSTEMTIME 与 time_t 互转函数

标签:blog   os   2014   re   c   ar   

原文地址:http://blog.csdn.net/timothy721/article/details/24715411

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!