cural 0.1.0

Windows process memory model
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#[cfg(target_os = "windows")]
extern crate windows;

#[cfg(target_os = "windows")]
mod process;
#[cfg(target_os = "windows")]
mod module;

#[cfg(target_os = "windows")]
pub use process::Process;
#[cfg(target_os = "windows")]
pub use module::Module;