Recent content by Ling1201

  1. Ling1201

    Windows 10 for ARM : GetNativeSystemInfo returns wrong wProcessorArchitecture

    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...
  2. Ling1201

    Windows 10 for ARM : GetNativeSystemInfo returns wrong wProcessorArchitecture

    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...
Back
Top