|
From: William S F. <ws...@fu...> - 2010-04-03 20:18:12
|
Rob Marshall wrote: > Hi, > > In the library I'm trying to interface with (via > Python) there are several variables that are > defined as: > > typedef void you_name_it; > > When I look through the xxx_wrap.c file I don't see any > SWIGTYPE_p_you_name_it's anywhere. What do I need to do > in order to get these defined? SWIG uses the one type in the wrappers and as void and you_name_it are the same type, it chooses SWIGTYPE_void only - the reduced type. This should work for all wrappers, so I'm not sure why you want this. William |