如何“const unsigned char *”用 java 的 swig 包裹

发布于 2024-11-15 07:41:15 字数 240 浏览 1 评论 0原文

如何用 SWIG 包装以下 C 函数?

int add_option(const unsigned char *data);

目前我将其包装为:

public static int add_option(SWIGTYPE_p_unsigned_char data);

是否可以将其包装为 String、Byte[] 或类似的内容?

How can the following C function be wrapped with SWIG?

int add_option(const unsigned char *data);

Currently I get this wrapped to:

public static int add_option(SWIGTYPE_p_unsigned_char data);

Is it possible to wrap it for String, Byte[] or something similar?

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

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

发布评论

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

评论(2

So要识趣 2024-11-22 07:41:15
     %module Example

     %{
       int func(const unsigned char *data);
      %}


      %include <arrays_java.i>

      %apply signed char[] { const unsigned char *data};


      int func(const unsigned char *data);

使用此代码!!!!

     %module Example

     %{
       int func(const unsigned char *data);
      %}


      %include <arrays_java.i>

      %apply signed char[] { const unsigned char *data};


      int func(const unsigned char *data);

Use this code !!!!!

下壹個目標 2024-11-22 07:41:15

是的,这是可能的。在最坏的情况下,您可以构建自己的类型映射。但这里 %apply 就足够了。试试这个:

    %apply signed char *INOUT { unsigned char *pSeqData };

[在几个月没有使用 Swig 之后,我根据 *.i 文件中的类似问题改编了这个。 YMMV.]

%apply 指令将类型映射从一种类型复制到另一种类型。 SWIG 手册中有更多相关信息。

Yes, it is possible. In the worst case, you could build your own typemap. But a %apply should be sufficient here. Try this:

    %apply signed char *INOUT { unsigned char *pSeqData };

[I adapted this from a similar problem in my *.i file, after months of not using Swig. YMMV.]

The %apply directive copies typemaps from one type to another. There's more about it here in the SWIG manual.

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