SWIG - struct中的float数组到c# - SWIGTYPE_p_float

时间:2016-05-09 08:37:30

标签: c# struct swig

我有一个问题。我正在尝试使用swig来包装一些原生dll,其中包含如下所示的结构:

typedef struct {
    int x;
    float y[const1];
    float z[const2];
} MyStruct;

和y和z的c#表示不是数组,而是SWIGTYPE_p_float。有没有办法告诉swig将我的float y [const1]解释为数组,而不是SWIGTYPE_p_float?我已经尝试过“memberin”和“typemap”,但没有成功。 Thanx in advanced ...

0 个答案:

没有答案