A first attempt at listening sockets in Open Transport.
[sgt/putty] / windows / wintime.c
CommitLineData
aca589d9 1#include "putty.h"
2#include <time.h>
3
4struct tm ltime(void)
5{
6 SYSTEMTIME st;
7 struct tm tm;
8
9 GetLocalTime(&st);
10 tm.tm_sec=st.wSecond;
11 tm.tm_min=st.wMinute;
12 tm.tm_hour=st.wHour;
13 tm.tm_mday=st.wDay;
14 tm.tm_mon=st.wMonth-1;
15 tm.tm_year=(st.wYear>=1900?st.wYear-1900:0);
16 tm.tm_wday=st.wDayOfWeek;
17 tm.tm_yday=-1; /* GetLocalTime doesn't tell us */
18 tm.tm_isdst=0; /* GetLocalTime doesn't tell us */
19 return tm;
20}