GetLocalTime function kernel32

void GetLocalTime(
  1. Pointer<SYSTEMTIME> lpSystemTime
)

Retrieves the current local date and time.

void GetLocalTime(
  LPSYSTEMTIME lpSystemTime
);

Implementation

void GetLocalTime(Pointer<SYSTEMTIME> lpSystemTime) =>
    _GetLocalTime(lpSystemTime);