Hi Neemobeer,
So I tried to use native C++ to call GetNativeSystemInfo API today,
SYSTEM_INFO systemInfo;
GetNativeSystemInfo(&systemInfo);
cout << "wProcessorArchitecture: " << systemInfo.wProcessorArchitecture << endl;
the output was wProcessorArchitecture: 0
I am expecting...
I need to detect the ProcessorArchitecture in UWP to figure out if it is run in ARM platform to do some function filter.
So I tried to use Pinvoke to call GetNativeSystemInfo api (Desktop application) and run it in windows 10 for ARM.
It returns wrong wProcessorArchitecture as...