我需要Rust中的extern "C"
FFI函数,并希望接受一个固定大小的数组。 C代码传递的内容如下:
// C code
extern int(*)[4] call_rust_funct(unsigned char (*)[3]);
....
unsigned char a[] = { 11, 255, 212 };
int(*p)[4] = call_rust_funct(&a);
如何为它编写Rust功能?
// Pseudo code - DOESN'T COMPILE
pub unsafe extern "C" fn call_rust_funct(_p: *mut u8[3]) -> *mut i32[4] {
Box::into_raw(Box::new([99i32; 4]))
}
答案 0 :(得分:7)
您只需要将Rust的语法用于固定大小的数组:
ContextCompat.getColor(context, R.color.color_name);
或者您始终可以使用pub unsafe extern "C" fn call_rust_funct(_p: *mut [u8; 3]) -> *mut [i32; 4] {
Box::into_raw(Box::new([99i32; 4]))
}
并将其转换为正确的类型。