GetSystemTime function kernel32

void GetSystemTime(
  1. Pointer<SYSTEMTIME> lpSystemTime
)

Retrieves the current local date and time.

void GetSystemTime(
  LPSYSTEMTIME lpSystemTime
);

Implementation

void GetSystemTime(Pointer<SYSTEMTIME> lpSystemTime) =>
    _GetSystemTime(lpSystemTime);