wintime.c 561 B

123456789101112131415161718192021222324
  1. /*
  2. * wintime.c - Avoid trouble with time() returning (time_t)-1 on Windows.
  3. */
  4. #include "putty.h"
  5. #include <time.h>
  6. struct tm ltime(void)
  7. {
  8. SYSTEMTIME st;
  9. struct tm tm;
  10. GetLocalTime(&st);
  11. tm.tm_sec=st.wSecond;
  12. tm.tm_min=st.wMinute;
  13. tm.tm_hour=st.wHour;
  14. tm.tm_mday=st.wDay;
  15. tm.tm_mon=st.wMonth-1;
  16. tm.tm_year=(st.wYear>=1900?st.wYear-1900:0);
  17. tm.tm_wday=st.wDayOfWeek;
  18. tm.tm_yday=-1; /* GetLocalTime doesn't tell us */
  19. tm.tm_isdst=0; /* GetLocalTime doesn't tell us */
  20. return tm;
  21. }