cxx/
function.rs

1#![allow(missing_docs)]
2
3use core::ffi::c_void;
4
5#[repr(C)]
6pub struct FatFunction {
7    pub trampoline: *const c_void,
8    pub ptr: *const c_void,
9}