您现在的位置是:网站首页> Go语言
Go调用C的回调生成头文件需要屏蔽的
- Go语言
- 2025-09-01
- 1375人已阅读
摘要
        Go调用C的回调生成头文件需要屏蔽的
     
    
    //#line 6 "main.go"
    //#include <unistd.h>
    需要修改屏蔽
    typedef __int64 GoInt64;
    typedef UINT64 GoUint64;
    typedef GoInt32 GoInt;
    typedef GoUint32 GoUint;
    //typedef __SIZE_TYPE__ GoUintptr;
    typedef float GoFloat32;
    typedef double GoFloat64;
    //typedef float _Complex GoComplex64;
    //typedef double _Complex GoComplex128;
    
上一篇:map使用