如题,请问如何设置系统的日期时间?其中我是这样做,但时间设置不对,如我没置01:00:00,系统显示14:00:00
SYSTEMTIME   st;   
GetLocalTime(&st); st.wYear=m_tDate.GetYear();
st.wMonth=m_tDate.GetMonth();
st.wDay=m_tDate.GetDay();
st.wHour   = m_tTime.GetHour();                     //   adjusts   hours     
st.wMinute   =   m_tTime.GetMinute();           //   and   minutes   
st.wSecond=m_tTime.GetSecond();
SetSystemTime(&st);     //   sets   system