SWIG: Warning 453: Can't apply (char *STRING,size_t LENGTH). No typemaps are defined -
i have small .i file information:
%module (directors="1") tu %include "typemaps.i" %include "enums.swg" %header %{ #include <my_header.h> %} %apply (char *string, size_t length) { (char* msg_buf, int buf_len) };
when generating java bindings there no warnings when generating c# bindings this:
swig: warning 453: can't apply (char *string,size_t length). no typemaps defined
can advise on might problem. .i file identical java , c#.
Comments
Post a Comment