ark_api_ffi/ffi/
core_v2.rs

1define_api_id!(3, "core-v2");
2
3#[link(wasm_import_module = "ark-core-v2")]
4extern "C" {
5    pub fn core__register_panic(
6        err_msg_ptr: *const u8,
7        err_msg_len: u32,
8        location_file_ptr: *const u8,
9        location_file_len: u32,
10        location_line: u32,
11        location_column: u32,
12    ) -> crate::ErrorCode;
13}