When I try to use an extern function defined in another crate, (specifically, std::libc::funcs::extra::kernel32::OpenProcess in my case), Rust seems to generate a direct call to that function, and then linking fails because of unresolved symbols. My expectation is that the call would go first to the wrapper inside std crate, which then calls the real OpenProces().
Am I getting this right?
_______________________________________________ Rust-dev mailing list [email protected] https://mail.mozilla.org/listinfo/rust-dev
