pub unsafe fn is_wow_64(pid: u32) -> Option<bool>
Expand description

judge the process is running on wow64 or not , it will return a Option<bool> (you must consider the situation that OpenProcess cannot be used)

let tl = Tasklist::new();
for i in tl{           
   println!("pname: {}\tpid: {}\t is_wow_64 :{:?}",i.get_pname(),i.get_pid(),tasklist::is_wow_64(i.get_pid()));   
}