You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
HI:
I have an question. I'm trying to use swig to wrap some native dll, which contains struct looking like this:
struct Test
{ double Price[20];
};
and c# representation for Price is not an array, but SWIGTYPE_p_double. Is there way to tell swig to interpret my float Price[20] as an array, and not SWIGTYPE_p_double?
The text was updated successfully, but these errors were encountered:
HI:
I have an question. I'm trying to use swig to wrap some native dll, which contains struct looking like this:
struct Test
{ double Price[20];
};
and c# representation for Price is not an array, but SWIGTYPE_p_double. Is there way to tell swig to interpret my float Price[20] as an array, and not SWIGTYPE_p_double?
The text was updated successfully, but these errors were encountered: