mirror of
https://github.com/janbodnar/Windows-API-examples.git
synced 2024-11-24 11:25:30 +00:00
21 lines
395 B
C
21 lines
395 B
C
#include <windows.h>
|
|
#include <wchar.h>
|
|
|
|
int wmain(void) {
|
|
|
|
TIME_ZONE_INFORMATION tzi = {0};
|
|
|
|
int r = GetTimeZoneInformation(&tzi);
|
|
|
|
if (r == TIME_ZONE_ID_INVALID) {
|
|
|
|
wprintf(L"Failed to get time zone %d", GetLastError());
|
|
return 1;
|
|
}
|
|
|
|
wprintf(L"Time zone: %ls\n", tzi.StandardName);
|
|
wprintf(L"The bias is: %ld minutes\n", tzi.Bias);
|
|
|
|
return 0;
|
|
}
|