dynlink_win32/lib.rs
1//! WIN32 dynamic linking.
2//!
3//! This library binds around <libloaderapi.h> and provides a more memory-safe API
4//! that allows dynamic linking shared objects, and use the data and functions they contains.
5
6#[cfg(target_os = "windows")]
7pub mod symtab;
8
9#[cfg(target_os = "windows")]
10pub mod ffi;