|
#11
|
|||
|
|||
|
If someone could please help me learn this function, I think this maybe the one that will work. Any helpers out there?
-------------------------------------------------------------------------- SystemTimeToTzSpecificLocalTime Function Converts a time in Coordinated Universal Time (UTC) to a specified time zone's corresponding local time. ================================================== ======= Syntax BOOL WINAPI SystemTimeToTzSpecificLocalTime( __in_opt LPTIME_ZONE_INFORMATION lpTimeZone, __in LPSYSTEMTIME lpUniversalTime, __out LPSYSTEMTIME lpLocalTime ); ================================================== ======= C# syntax [DllImport("kernel32.dll", SetLastError=true)] private static extern long SystemTimeToTzSpecificLocalTime(IntPtr lpTimeZoneInformation, ref SYSTEMTIME lpUniversalTime, ref SYSTEMTIME lpLocalTime); ================================================== ======= Parameters lpTimeZone [in, optional] A pointer to a TIME_ZONE_INFORMATION structure that specifies the time zone of interest. If lpTimeZone is NULL, the function uses the currently active time zone. lpUniversalTime [in] A pointer to a SYSTEMTIME structure that specifies the UTC time to be converted. The function converts this universal time to the specified time zone's corresponding local time. lpLocalTime [out] A pointer to a SYSTEMTIME structure that receives the local time. Return Value If the function succeeds, the return value is nonzero, and the function sets the members of the SYSTEMTIME structure pointed to by lpLocalTime to the appropriate local time values. If the function fails, the return value is zero. To get extended error information, call GetLastError. |
![]() |
| Thread Tools | Search this Thread |
| Display Modes | |
|
|