#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

#234 in Windows APIs

Download history 6/week @ 2024-02-19 34/week @ 2024-02-26 4/week @ 2024-03-04 9/week @ 2024-03-11

53 downloads per month
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