英文: CGO; C function has int pointer argument, how to pass correct type? 问题 目前我正在使用Cgo从Go中调用C函数。我正在尝试...
错误:在构建来自C?Go?Cgo!文章的示例时,无法确定C.stdout的名称类型。
英文: Error: Could not determine kind of name for C.stdout when building example from C? Go? Cgo! arti...
访问 C 联合字段时的问题
英文: problems when accessing C union field 问题 我想在Go中访问C联合体的字段。以下是我的源代码,但是在编译时出现错误: package main // #i...
有没有办法在Go结构体被回收时释放非托管资源?
英文: Is there a way to release unmanaged resources when a Go struct is collected? 问题 我有一个指向由Go结构体包装的C...
我可以在Windows SDK中使用cgo吗?
英文: Can I use cgo with Windows SDK? 问题 我刚刚尝试了tdm-gcc,它可以工作,但是能否使用Windows SDK来使用cgo呢? 英文: I've just t...
如何在Go中使用stdcall
英文: How to make stdcall from Go 问题 我有一个指向COM接口的指针,并且想要从它的虚函数表中获取函数指针并进行方法调用。为了做到这一点,我需要进行stdcall方法调用...
我可以在cgo中使用C++吗?
英文: Can I use c++ in cgo? 问题 在cgo中是否可以混合一些C++代码? 我尝试了这个: package main /* #include <iostream> e...
如何在Goclipse中使用Mingw的cgo?
英文: How to use cgo in Goclipse with Mingw? 问题 当我尝试使用cgo时,我遇到了错误 exec gcc: exec: "gcc": 在%P...
使用NDK和cgo和/或SWIG或类似工具,可以在Go语言中构建Android游戏吗?
英文: Is is possible to build Android games in Go using the NDK with cgo and/or SWIG or similar? 问题 有没...
在Go语言中的条件编译
英文: Conditional compilation in Go 问题 我正在尝试使用CGo为ENet编写一个Go的包装器。 当我在Mac上尝试编译我的包装器时,库版本较旧,接口略有不同。代码中有9...
28