如何在 64 位平台中配置 swig 将 size_t 映射为 ulong 而不是 uint (c#)
问题是 swig 将 size_t 变量映射为 c# 中的 uint,这在 32 位中是正确的,但我也需要为 64 位版本创建包装器。我需要接口配置方面的帮助,以便在 64 位平台上使用 ulong 而不是 uint 来表示 size_t。 界面很简单,直接添加头文件就可以了。不需要 Linux 支持,因为该项目仅适用于 Windows,编译器是 Visual Studio 2010。
任何帮助将不胜感激。
The problem is that swig is mapping size_t variables as uint in c# this is correct in 32 bit, but I need to create the wrapper for the 64 bit version too. I need help with the configuration of the interface to use ulong instead of uint for size_t on 64 bit platforms.
The interface is really simple I just added the header files directly. There is no need to linux support since the project is only for windows and the compiler is Visual Studio 2010.
Any help will be greatly apreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
%apply
有点像#define。我一直用它来将 int64_t 转换为 long long。%apply
is sort of like a #define. I've been using it to convert int64_t to long long.