At 12:51 AM 12/10/2004, Tonko Juricic wrote: >To resolve missing type metadata info I tried the >trick mentioned on: http://www.winterdom.com/mcppfaq/ >site. > >Basically I had to put the following code in >WorkerRequest.cpp: > >namespace Apache { >namespace Native { >extern "C" >{ > struct apr_table_t {};
Actually, you declared an empty struct, not an opaque one. Try struct apr_table_t { char foo[]; } to declare a structure of indeterminant size. Bill