golang cgo出参
//export OutputParameter func OutputParameter(in0 *C.char, out **C.char) C.int { str := C.GoString(in0) *out = C.CString(str) return 0 }