1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#![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(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", bench, feature = "bench"))]
pub mod rsrc;
#[cfg(any(test, doctest, feature = "test", bench, feature = "bench"))]
pub mod test;

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