Tutorial by Examples

Given the following custom Boolean type we want to wrap: typedef char MYBOOL; #define TRUE 1 #define FALSE 0 A simple approach might be to write the following typemaps in our SWIG interface: %typemap(in) MYBOOL %{ // $input is what we got passed from Python for this function argument $1...

Page 1 of 1