doutang6819 2019-08-06 12:56
浏览 253
已采纳

如何将Go函数作为参数传递给C函数?

I'm trying to pass a Go function to a C function.

Something like:

stm := C.struct_tray_menu{
    ....
    fn: // definition of method
    ....
}
C.menu_cb(stm);

and pass that into a C function:

static void menu_cb(struct tray_menu *item) {
  (void)item;
  printf("menu: clicked on %s
", item->text);
}

I'd just like to know how to define something like C.function.

  • 写回答

1条回答 默认 最新

  • duanfu6160 2019-08-07 12:43
    关注

    the main problem is misunderstanding of definition of go in c. so final code is look like

    
    //export callOnMeGo
    func callOnMeGo(in int) int {
        fmt.Printf("Go.callOnMeGo(): called with arg = %d
    ", in)
        return  in+ 1
    }
    
    func main() {
    
        C.some_c_func((C.callback_fcn)(unsafe.Pointer(C.callOnMeGo_cgo)))
        //dont forget to use (funcDefinedInGO_cgo) for with postfix _cgo
    
    ...
    
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥20 腾讯企业邮箱邮件可以恢复么
  • ¥15 有人知道怎么将自己的迁移策略布到edgecloudsim上使用吗?
  • ¥15 错误 LNK2001 无法解析的外部符号
  • ¥50 安装pyaudiokits失败
  • ¥15 计组这些题应该咋做呀
  • ¥60 更换迈创SOL6M4AE卡的时候,驱动要重新装才能使用,怎么解决?
  • ¥15 让node服务器有自动加载文件的功能
  • ¥15 jmeter脚本回放有的是对的有的是错的
  • ¥15 r语言蛋白组学相关问题
  • ¥15 Python时间序列如何拟合疏系数模型