原文链接 -> 传送门
函数功能:
GetSystemInfo 函数用于获取当前系统信息。
要获取 WOW64 位系统(Windows-on-Windows 64-bit,是一个 Windows 操作系统的子系统)的精确信息,调用 GetNativeSystemInfo 函数
API 函数原型:
注释:_Out_ 说明该参数是输出的。
void WINAPI GetSystemInfo( _Out_ LPSYSTEM_INFO lpSystemInfo );
参数解析:
|
参数 |
含义 |
|
lpSystemInfo |
指向接收系统信息的 SYSTEM_INFO 结构指针 |
返回值:
该函数没有返回值。
需求:
|
Minimum supported client |
Windows 2000 专业版 [仅桌面应用程序] |
|
Minimum supported server |
Windows 2000 服务器版 [仅桌面应用程序] |
|
Header |
WinBase.h (包含于 Windows.h) |
|
Library |
Kernel32.lib |
|
DLL |
Kernel32.dll |




