memflow_win32/
lib.rs

1/*!
2This crate contains memflow's win32 implementation.
3It is used to interface with windows targets.
4*/
5
6#![cfg_attr(not(feature = "std"), no_std)]
7extern crate no_std_compat as std;
8
9pub mod kernel;
10
11pub mod offsets;
12
13pub mod win32;
14
15pub mod prelude {
16    pub mod v1 {
17        pub use crate::kernel::*;
18        pub use crate::offsets::*;
19        pub use crate::win32::*;
20    }
21    pub use v1::*;
22}
23
24#[cfg(feature = "plugins")]
25pub mod plugins;