MCPcopy Create free account
hub / github.com/BeneficialCode/WinArk / IsWow64Process

Method IsWow64Process

WinSysCore/Processes.cpp:241–247  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

239}
240
241bool Process::IsWow64Process() const {
242 PROCESS_EXTENDED_BASIC_INFORMATION info;
243 if (!GetExtendedInfo(GetHandle(), &info))
244 return false;
245
246 return info.IsWow64Process ? true : false;
247}
248
249bool Process::IsManaged() const {
250 wil::unique_handle hProcess;

Callers 4

GetAttributesMethod · 0.80
GetBitnessMethod · 0.80
GetSubProcessTagMethod · 0.80
GetComFlagsMethod · 0.80

Calls 1

GetExtendedInfoFunction · 0.85

Tested by

no test coverage detected