小甲鱼 发表于 2016-5-15 23:19:48

GetSystemInfo

注:本文档由 百日维新 翻译,小甲鱼校对。

原文链接 -> 传送门

函数功能:

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


【API档案】版权归鱼C工作室(www.fishc.com)所有,转载请注明来源。

页: [1]
查看完整版本: GetSystemInfo