blob: f0a201008d1e90d68f7c3bce7eceb06d581bda5e [file] [log] [blame]
David Tolnaycb07a842021-04-16 16:08:52 -07001#![allow(missing_docs)]
2
David Tolnaye84849e2021-04-16 00:35:01 -07003use core::ffi::c_void;
4
David Tolnay75dca2e2020-03-25 20:17:52 -07005#[repr(C)]
6pub struct FatFunction {
David Tolnaye84849e2021-04-16 00:35:01 -07007 pub trampoline: *const c_void,
8 pub ptr: *const c_void,
David Tolnay75dca2e2020-03-25 20:17:52 -07009}