mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 01:04:03 +00:00
21 lines
455 B
Rust
21 lines
455 B
Rust
#![cfg_attr(target_arch = "x86", feature(raw_dylib))]
|
|
|
|
#[link(name = "exporter", kind = "raw-dylib")]
|
|
extern "stdcall" {
|
|
#[link_ordinal(15)]
|
|
fn imported_function_stdcall(i: i32);
|
|
}
|
|
|
|
#[link(name = "exporter", kind = "raw-dylib")]
|
|
extern "fastcall" {
|
|
#[link_ordinal(18)]
|
|
fn imported_function_fastcall(i: i32);
|
|
}
|
|
|
|
pub fn library_function() {
|
|
unsafe {
|
|
imported_function_stdcall(6);
|
|
imported_function_fastcall(125);
|
|
}
|
|
}
|