linux 的 SYSTEMTIME 等价物
SYSTEMTIME equivalent for linux
我正在对从 VS2010 到 linux 环境的用 C++ 编写的巨大解决方案进行跨平台编译。
我的问题是:linux 中与 struct SYSTEMTIME 最接近的等价物是什么?
typedef struct _SYSTEMTIME
{
WORD wYear;
WORD wMonth;
WORD wDayOfWeek;
WORD wDay;
WORD wHour;
WORD wMinute;
WORD wSecond;
WORD wMilliseconds;
} SYSTEMTIME;
提前致谢
查看 ctime(3) 和相关函数。 struct tm 似乎与 _SYSTEMTIME 结构非常匹配。
struct tm {
int tm_sec; /* Seconds (0-60) */
int tm_min; /* Minutes (0-59) */
int tm_hour; /* Hours (0-23) */
int tm_mday; /* Day of the month (1-31) */
int tm_mon; /* Month (0-11) */
int tm_year; /* Year - 1900 */
int tm_wday; /* Day of the week (0-6, Sunday = 0) */
int tm_yday; /* Day in the year (0-365, 1 Jan = 0) */
int tm_isdst; /* Daylight saving time */
};
我正在对从 VS2010 到 linux 环境的用 C++ 编写的巨大解决方案进行跨平台编译。
我的问题是:linux 中与 struct SYSTEMTIME 最接近的等价物是什么?
typedef struct _SYSTEMTIME
{
WORD wYear;
WORD wMonth;
WORD wDayOfWeek;
WORD wDay;
WORD wHour;
WORD wMinute;
WORD wSecond;
WORD wMilliseconds;
} SYSTEMTIME;
提前致谢
查看 ctime(3) 和相关函数。 struct tm 似乎与 _SYSTEMTIME 结构非常匹配。
struct tm {
int tm_sec; /* Seconds (0-60) */
int tm_min; /* Minutes (0-59) */
int tm_hour; /* Hours (0-23) */
int tm_mday; /* Day of the month (1-31) */
int tm_mon; /* Month (0-11) */
int tm_year; /* Year - 1900 */
int tm_wday; /* Day of the week (0-6, Sunday = 0) */
int tm_yday; /* Day in the year (0-365, 1 Jan = 0) */
int tm_isdst; /* Daylight saving time */
};