Ruby-FFI 在包装以大写字母开头的函数时生成常量?

发布于 2024-12-28 09:40:24 字数 244 浏览 1 评论 0原文

我正在尝试用 Ruby-FFI 包装 C 库。但是,库中的函数名称以大写字母开头。因此,看起来 ffi 似乎正在尝试生成常量,当您尝试在运行时从 Ruby 访问它们时,您会收到一条错误消息,指出

NameError: uninitialized constant (name of function)

是否有一种方法可以为函数名称添加别名,以便在 Ruby 中您可以将它们作为方法访问:名称应该是小写的吗?

I am trying to wrap a C library with Ruby-FFI. However, the function names from the library start with capital letters. As a result, it seems as if ffi is trying to generate constants, and when you try access them at runtime from Ruby, you get an error saying

NameError: uninitialized constant (name of function)

Is there a way to alias function names so that in ruby you can access them as methods with lower case names as they ought to be?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

疯到世界奔溃 2025-01-04 09:40:24

等等,这里似乎显示了一个示例: https://github.com/ffi/ ffi/wiki/Windows-Examples

他们在这里所做的如下:

attach_function :message_box, :MessageBoxW, [ :pointer, :buffer_in, :buffer_in, :int ], :int

因此,attach_function 似乎允许您将别名作为第一个参数传递,后跟常用参数。尝试过这个,似乎有效。

Wait, it seems that an example is shown here: https://github.com/ffi/ffi/wiki/Windows-Examples

What they do here is the following:

attach_function :message_box, :MessageBoxW, [ :pointer, :buffer_in, :buffer_in, :int ], :int

So it seems that attach_function allows you to pass the alias as the first parameter, followed by the usual parameters. Tried this and it seems it works.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文