iswow64

Crates.ioiswow64
lib.rsiswow64
version0.1.0
sourcesrc
created_at2017-10-05 13:15:49.194944
updated_at2017-10-05 13:15:49.194944
descriptionDetermines whether the current process is running under WOW64.
homepage
repositoryhttps://github.com/WLBF/iswow64
max_upload_size
id34492
size2,459
junction-labs (github:junction-labs:junction-labs)

documentation

README

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);

Commit count: 6

cargo fmt