win32timezone.resolveMUITimeZone

resolveMUITimeZone(spec)

Resolve a multilingual user interface resource for the time zone name

Parameters

spec :

spec

Comments

spec should be of the format @path,-stringID[;comment] see https://learn.microsoft.com/en-ca/windows/win32/api/timezoneapi/ns-timezoneapi-time_zone_information for details

>>> import sys

>>> result = resolveMUITimeZone('@tzres.dll,-110')

>>> expectedResultType = [type(None),str][sys.getwindowsversion() >= (6,)]

>>> type(result) is expectedResultType

True