#vtable #cpp #virtual #api-bindings

viable

Interop with C++ MSVC VTables through Rust! If this hasn't been used for a while, you can message me for the name

7 releases

0.2.0 Feb 26, 2022
0.1.5 Feb 20, 2022

#185 in FFI

Download history 13/week @ 2024-02-26 17/week @ 2024-03-04 23/week @ 2024-03-11 13/week @ 2024-03-18

66 downloads per month

MIT license

3KB

viable 🐍

Interop with C++ MSVC VTables through Rust!

Usage

use std::os::raw::c_int;
use viable::vtable;

extern "C" {
	fn getMath(i: c_int) -> *mut Math;
}

#[vtable]
struct Math {
	internal: c_int,

	add: extern "C" fn(a: c_int, b: c_int) -> c_int,
	#[offset(1)] // Completely optional
	add2: extern "C" fn(a: c_int, b: c_int) -> c_int,
}

pub fn main() {
	let iface = unsafe { getMath(10) };
	let iface = unsafe { iface.as_mut().unwrap() };

	// Yep. Even this works
	assert_eq!( iface.internal, 10 );
	assert_eq!( iface.add2(5, 5), 5 + 5 + 10 );
}

See viable-tests/src/basic.cpp for C++ source.

Dependencies

~1.5MB
~33K SLoC