[C++-sig] problems with typedef void *

2010-12-12 Thread Jacob Davis
Howdy! I'm wrapping a C libary with Boost Python and having a really difficult time with void * typedefs. For example, here's a typedef and the function header that uses it: typedef void * EmoEngineEventHandle; EmoEngineEventHandle EE_EmoEngineEventCreate(); And my undoubtedly overly simplistic

Re: [C++-sig] problems with typedef void *

2010-12-12 Thread Jim Bosch
On 12/12/2010 01:02 PM, Jacob Davis wrote: Howdy! I'm wrapping a C libary with Boost Python and having a really difficult time with void * typedefs. For example, here's a typedef and the function header that uses it: typedef void * EmoEngineEventHandle; EmoEngineEventHandle EE_EmoEngineEventCre

Re: [C++-sig] problems with typedef void *

2010-12-12 Thread Stefan Seefeld
On 12/12/2010 04:02 PM, Jacob Davis wrote: Howdy! I'm wrapping a C libary with Boost Python and having a really difficult time with void * typedefs. For example, here's a typedef and the function header that uses it: typedef void * EmoEngineEventHandle; EmoEngineEventHandle EE_EmoEngineEvent