(ctxt: *mut c_void)
| 2121 | } |
| 2122 | |
| 2123 | extern "C" fn cb_opcode_display_len<A>(ctxt: *mut c_void) -> usize |
| 2124 | where |
| 2125 | A: 'static + Architecture<Handle = CustomArchitectureHandle<A>> + Send + Sync, |
| 2126 | { |
| 2127 | let custom_arch = unsafe { &*(ctxt as *mut A) }; |
| 2128 | custom_arch.opcode_display_len() |
| 2129 | } |
| 2130 | |
| 2131 | extern "C" fn cb_associated_arch_by_addr<A>( |
| 2132 | ctxt: *mut c_void, |
nothing calls this directly
no test coverage detected