This library can be used to achieve shared state across shared libraries/modules.
Supported platforms
a.dll
```rust
crossdylib! {
static THE_ANSWER: std::sync::Mutex
pub unsafe extern "C" fn increment() { THE_ANSWER.sync().unwrap();
let mut lock = THE_ANSWER.lock().unwrap();
*lock += 1;
assert_eq!(*lock, 40);
} ```
b.dll
```rust
crossdylib! {
static THE_ANSWER: std::sync::Mutex
pub unsafe extern "C" fn increment() { THE_ANSWER.sync().unwrap();
let mut lock = THE_ANSWER.lock().unwrap();
*lock += 1;
assert_eq!(*lock, 41);
} ```
main.exe
```rust
fn main() {
let a = Library::new("a.dll").unwrap();
a.get:: }
```let b = Library::new("b.dll").unwrap();
b.get::<extern "C" fn()>("increment").unwrap()();
println!("Success");