2
이 내가 (이진 데이터의 배열을 생성하는)를 사용하기 위해 노력하고있어 C 함수의 서명입니다 :크리스탈 C 바인딩 : 인수 CONST 서명 숯불 **
long get_output(const unsigned char **);
내가 그것을지도 :
const unsigned char * data;
get_output(&data);
하지만 크리스탈의를 : : C에서
fun output = get_output(UInt8**): Int32
작업 예제는 어떻게 사용하는
data = uninitialized UInt8
MyLib.output(pointerof(pointerof(data))) # ERR: pointerof of pointerof not allowed
은 매력처럼 작동합니다. :) - 감사합니다. – Mat