最新消息: USBMI致力于为网友们分享Windows、安卓、IOS等主流手机系统相关的资讯以及评测、同时提供相关教程、应用、软件下载等服务。

WindowsAPI获取主机操作系统信息

业界 admin 13浏览 0评论
VOID SafeGetNativeSystemInfo(__out LPSYSTEM_INFO lpSystemInfo)  
{  
    if (NULL==lpSystemInfo) return;  
    typedef VOID (WINAPI *LPFN_GetNativeSystemInfo)(LPSYSTEM_INFO lpSystemInfo);  
    LPFN_GetNativeSystemInfo fnGetNativeSystemInfo = (LPFN_GetNativeSystemInfo)GetProcAddress( GetModuleHandle(_T("kernel32")), "GetNativeSystemInfo");;  
    if (NULL != fnGetNativeSystemInfo)  
    {  
        fnGetNativeSystemInfo(lpSystemInfo);  
    }  
    else  
    {  
        GetSystemInfo(lpSystemInfo);  
    }  
}  
// 获取操作系统位数 
int GetS
VOID SafeGetNativeSystemInfo(__out LPSYSTEM_INFO lpSystemInfo)  
{  
    if (NULL==lpSystemInfo) return;  
    typedef VOID (WINAPI *LPFN_GetNativeSystemInfo)(LPSYSTEM_INFO lpSystemInfo);  
    LPFN_GetNativeSystemInfo fnGetNativeSystemInfo = (LPFN_GetNativeSystemInfo)GetProcAddress( GetModuleHandle(_T("kernel32")), "GetNativeSystemInfo");;  
    if (NULL != fnGetNativeSystemInfo)  
    {  
        fnGetNativeSystemInfo(lpSystemInfo);  
    }  
    else  
    {  
        GetSystemInfo(lpSystemInfo);  
    }  
}  
// 获取操作系统位数 
int GetS
发布评论

评论列表 (0)

  1. 暂无评论