shoom_rs 0.1.3

an extremely small library for creating & opening shared memory on Windows, and macOS.
Documentation
1
2
3
4
5
6
7
8
9
10
#[cfg(target_os = "macos")]
pub(crate) mod mac;
#[cfg(target_os = "macos")]
pub(crate) use mac::*;

#[cfg(target_os = "windows")]
pub(crate) mod win;

#[cfg(target_os = "windows")]
pub(crate) use win::*;