frida_sysType Alias GMemVTable
source pub type GMemVTable = _GMemVTable;
struct GMemVTable {
pub malloc: Option<unsafe extern "C" fn(_: u32) -> *mut c_void>,
pub realloc: Option<unsafe extern "C" fn(_: *mut c_void, _: u32) -> *mut c_void>,
pub memalign: Option<unsafe extern "C" fn(_: u32, _: u32) -> *mut c_void>,
pub free: Option<unsafe extern "C" fn(_: *mut c_void)>,
pub calloc: Option<unsafe extern "C" fn(_: u32, _: u32) -> *mut c_void>,
pub try_malloc: Option<unsafe extern "C" fn(_: u32) -> *mut c_void>,
pub try_realloc: Option<unsafe extern "C" fn(_: *mut c_void, _: u32) -> *mut c_void>,
}