Skip to content

Latest commit

 

History

History
48 lines (31 loc) · 999 Bytes

GetSystemInfo.md

File metadata and controls

48 lines (31 loc) · 999 Bytes

Home

Function name : GetSystemInfo

Group: System Information - Library: kernel32


Returns information about the current system.


Code examples:

Current System information

Declaration:

VOID GetSystemInfo(
  LPSYSTEM_INFO lpSystemInfo  // system information
);  

FoxPro declaration:

DECLARE GetSystemInfo IN kernel32 STRING @ lpSystemInfo  

Parameters:

lpSystemInfo [out] Pointer to a SYSTEM_INFO structure that receives the information.


Return value:

This function does not return a value.


Comments:

WinNT: much of this info you can find in environment strings. Skip to the examples with GetEnvironmentStrings.

See also: GetNativeSystemInfo.