GetLocalTime function kernel32

void GetLocalTime(
  1. Pointer<SYSTEMTIME> lpSystemTime
)

Retrieves the current local date and time.

To learn more, see learn.microsoft.com/windows/win32/api/sysinfoapi/nf-sysinfoapi-getlocaltime.

Implementation

@pragma('vm:prefer-inline')
void GetLocalTime(Pointer<SYSTEMTIME> lpSystemTime) =>
    _GetLocalTime(lpSystemTime);