IsWow64Process2 function kernel32
Determines whether the specified process is running under WOW64. Also returns additional machine process and architecture information.
BOOL IsWow64Process2(
HANDLE hProcess,
USHORT *pProcessMachine,
USHORT *pNativeMachine
);
Implementation
int IsWow64Process2(int hProcess, Pointer<Uint16> pProcessMachine,
Pointer<Uint16> pNativeMachine) =>
_IsWow64Process2(hProcess, pProcessMachine, pNativeMachine);