executable_memory 0.1.2

executable memory for windows and unix
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![no_std]


#[cfg(any(target_os = "linux", target_os = "macos"))]
extern crate libc;
#[cfg(target_os = "windows")]
extern crate winapi;


mod executable_memory;


pub use self::executable_memory::ExecutableMemory;