GetSystemInfo function kernel32

void GetSystemInfo(
  1. Pointer<SYSTEM_INFO> lpSystemInfo
)

Retrieves information about the current system.

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

Implementation

@pragma('vm:prefer-inline')
void GetSystemInfo(Pointer<SYSTEM_INFO> lpSystemInfo) =>
    _GetSystemInfo(lpSystemInfo);