1

例如,我有

my_types.h

typedef uint16_t my_type_1;
typedef uint8_t my_type_2;

my_types.c

int my_func(my_type_1 * arg1, my_type_2 * arg2, my_type_3 *arg3)
{
    *args3 = *arg1 + *arg2;
    return 0;
}

如何定义接口文件以将其包装到 python 中?

4

1 回答 1

0

假设您在 my_types.h 中也没有声明,my_func那么您的界面可以变为:

%module test

%{
#include "my_types.h"
%}

%include <stdint.i>

%include "my_types.h"

%apply uint16_t *INPUT { my_type_1 * arg1 };
%apply uint8_t *INPUT { my_type_2 * arg2 };
%apply uint16_t *OUTPUT { my_type_1 *arg3 };

int my_func(my_type_1 * arg1, my_type_2 * arg2, my_type_1 *arg3);

这足以让您按如下方式使用它:

import test

print test.my_func(100, 50)[1]

您的“真实”返回是元组中的位置 0,第一个 OUTPUT 位于位置 1。

于 2013-03-24T08:50:08.277 回答