#process-running #determine #windows #whether #wow64

iswow64

Determines whether the current process is running under WOW64

1 unstable release

Uses old Rust 2015

0.1.0 Oct 5, 2017

#242 in Windows APIs


Used in 2 crates (via xrpicker)

MIT license

3KB

iswow64 Build status

Determines whether the current process is running under WOW64.

Example:

extern crate iswow64;

let result = iswow64::iswow64();

println!("{:?}", result);

#[cfg(target_arch = "x86")]
assert_eq!(result.unwrap(), true);

#[cfg(target_arch = "x86_64")]
assert_eq!(result.unwrap(), false);


lib.rs:

Determines whether the current process is running under WOW64.

Example:

extern crate iswow64;

let result = iswow64::iswow64();

println!("{:?}", result);

#[cfg(target_arch = "x86")]
assert_eq!(result.unwrap(), true);

#[cfg(target_arch = "x86_64")]
assert_eq!(result.unwrap(), false);

Dependencies

~18KB