File: driver.rs

package info (click to toggle)
rustc 1.89.0%2Bdfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 906,624 kB
  • sloc: xml: 158,148; python: 34,888; javascript: 19,595; sh: 19,221; ansic: 13,046; cpp: 7,144; asm: 4,376; makefile: 692; lisp: 174; sql: 15
file content (19 lines) | stat: -rw-r--r-- 637 bytes parent folder | download | duplicates (15)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
extern crate raw_dylib_test;
extern crate raw_dylib_test_wrapper;

#[link(name = "extern_2", kind = "raw-dylib")]
extern "C" {
    fn extern_fn_2();
}

fn main() {
    // NOTE: The inlined call to `extern_fn_2` links against the function in extern_2.dll instead
    // of extern_1.dll since raw-dylib symbols from the current crate are passed to the linker
    // first, so any ambiguous names will prefer the current crate's definition.
    raw_dylib_test::inline_library_function();
    raw_dylib_test::library_function();
    raw_dylib_test_wrapper::inline_library_function_calls_inline();
    unsafe {
        extern_fn_2();
    }
}