0% found this document useful (0 votes)
498 views2 pages

GetNativeSystemInfo Function (Windows)

The GetNativeSystemInfo function retrieves system information for an application running under WOW64. It is equivalent to GetSystemInfo for 64-bit applications. It retrieves information to a SYSTEM_INFO structure. To determine if an application is running under WOW64, call IsWow64Process.

Uploaded by

sorin-it
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
498 views2 pages

GetNativeSystemInfo Function (Windows)

The GetNativeSystemInfo function retrieves system information for an application running under WOW64. It is equivalent to GetSystemInfo for 64-bit applications. It retrieves information to a SYSTEM_INFO structure. To determine if an application is running under WOW64, call IsWow64Process.

Uploaded by

sorin-it
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

3/21/2017 GetNativeSystemInfofunction(Windows)

GetNativeSystemInfo function

Retrieves information about the current system to an application running under WOW64. If the function is called from a
64bit application, it is equivalent to the GetSystemInfo function.

Syntax
C++

voidWINAPIGetNativeSystemInfo(
_Out_LPSYSTEM_INFOlpSystemInfo
);

Parameters
lpSystemInfo [out]
A pointer to a SYSTEM_INFO structure that receives the information.

Return value
This function does not return a value.

Remarks
To determine whether a Win32based application is running under WOW64, call the IsWow64Process function.

To compile an application that uses this function, define _WIN32_WINNT as 0x0501 or later. For more information, see
Using the Windows Headers.

Examples
For an example, see Getting the System Version.

Requirements

Minimum supported client WindowsXP [desktop apps | Windows Store apps]

Minimum supported server Windows Server2003 [desktop apps | Windows Store apps]

Minimum supported phone Windows Phone 8

Header
Winbase.h include Windows.h
[Link] 1/2
3/21/2017 GetNativeSystemInfofunction(Windows)

Library [Link]

DLL [Link]

See also
IsWow64Process
System Information Functions
SYSTEM_INFO

2017 Microsoft

[Link] 2/2

You might also like