windows.kernel32: add almost useless timezone function
parent
fed9249a90
commit
a1a0bdfa4e
|
@ -270,6 +270,20 @@ STRUCT: TIME_ZONE_INFORMATION
|
||||||
{ DaylightDate SYSTEMTIME }
|
{ DaylightDate SYSTEMTIME }
|
||||||
{ DaylightBias LONG } ;
|
{ DaylightBias LONG } ;
|
||||||
|
|
||||||
|
STRUCT: DYNAMIC_TIME_ZONE_INFORMATION
|
||||||
|
{ Bias LONG }
|
||||||
|
{ StandardName WCHAR[32] }
|
||||||
|
{ StandardDate SYSTEMTIME }
|
||||||
|
{ StandardBias LONG }
|
||||||
|
{ DaylightName WCHAR[32] }
|
||||||
|
{ DaylightDate SYSTEMTIME }
|
||||||
|
{ DaylightBias LONG }
|
||||||
|
{ TimeZoneKeyName WCHAR[128] }
|
||||||
|
{ DynamicDaylightTimeDisabled BOOLEAN } ;
|
||||||
|
|
||||||
|
TYPEDEF: DYNAMIC_TIME_ZONE_INFORMATION* PDYNAMIC_TIME_ZONE_INFORMATION
|
||||||
|
|
||||||
|
|
||||||
STRUCT: FILETIME
|
STRUCT: FILETIME
|
||||||
{ dwLowDateTime DWORD }
|
{ dwLowDateTime DWORD }
|
||||||
{ dwHighDateTime DWORD } ;
|
{ dwHighDateTime DWORD } ;
|
||||||
|
@ -1366,6 +1380,9 @@ ALIAS: GetDiskFreeSpaceEx GetDiskFreeSpaceExW
|
||||||
! FUNCTION: GetDriveTypeA
|
! FUNCTION: GetDriveTypeA
|
||||||
FUNCTION: UINT GetDriveTypeW ( LPCTSTR lpRootPathName )
|
FUNCTION: UINT GetDriveTypeW ( LPCTSTR lpRootPathName )
|
||||||
ALIAS: GetDriveType GetDriveTypeW
|
ALIAS: GetDriveType GetDriveTypeW
|
||||||
|
|
||||||
|
FUNCTION: DWORD GetDynamicTimeZoneInformation ( PDYNAMIC_TIME_ZONE_INFORMATION pTimeZoneInformation )
|
||||||
|
|
||||||
FUNCTION: void* GetEnvironmentStringsW ( )
|
FUNCTION: void* GetEnvironmentStringsW ( )
|
||||||
! FUNCTION: GetEnvironmentStringsA
|
! FUNCTION: GetEnvironmentStringsA
|
||||||
ALIAS: GetEnvironmentStrings GetEnvironmentStringsW
|
ALIAS: GetEnvironmentStrings GetEnvironmentStringsW
|
||||||
|
|
Loading…
Reference in New Issue