crates.io

fn_abi

A proc attribute macro that sets the ABI/calling convention for the attributed function.

Example

```rust

[macro_use]

extern crate fn_abi;

[abi("fastcall")]

extern fn hello_world() { println!("hello world!"); }

[cfgattr(all(targetos = "windows", targetpointerwidth = "32"), abi("thiscall"))]

[cfgattr(all(targetos = "windows", targetpointerwidth = "64"), abi("fastcall"))]

extern fn hello_world() { println!("hello world!"); } ```