Skip to content
/ iswow64 Public

Determines whether the current process is running under WOW64.

License

Notifications You must be signed in to change notification settings

WLBF/iswow64

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

iswow64 Crates.io 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);

About

Determines whether the current process is running under WOW64.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages