lancelot 0.9.6

binary analysis framework for x32/x64 PE files
Documentation
#![allow(clippy::upper_case_acronyms)]

extern crate bitflags;
#[macro_use]
extern crate lazy_static;
extern crate log;

pub mod analysis;
pub mod arch;
pub mod aspace;
pub mod config;
#[cfg(any(test, doctest, feature = "emulator"))]
pub mod emu;
pub mod loader;
pub mod module;
pub mod pagemap;
pub mod util;
pub mod workspace;

#[cfg(any(test, doctest, feature = "test"))]
pub mod rsrc;
#[cfg(any(test, doctest, feature = "test"))]
pub mod test;

pub type VA = u64;
pub type RVA = u64;