aboutsummaryrefslogtreecommitdiff
path: root/src/function.rs
blob: f0a201008d1e90d68f7c3bce7eceb06d581bda5e (plain)
1
2
3
4
5
6
7
8
9
#![allow(missing_docs)]

use core::ffi::c_void;

#[repr(C)]
pub struct FatFunction {
    pub trampoline: *const c_void,
    pub ptr: *const c_void,
}