lazy_link 0.1.1

lazy_link is a Rust proc macro for dynamic runtime lookup of external functions, supporting custom resolvers, caching and no_std environments.
Documentation
1
2
3
4
5
6
7
8
use lazy_link::lazy_link;

#[lazy_link(resolver = "my_resolver", unknown = "12")]
extern "C" {
    fn method_01();
}

fn main() {}