00001 00032 extern "C" 00033 { 00034 void FSOUND_Init(void); 00035 } 00036 00037 void* fmodwrapper(void) 00038 { 00039 // When building the fmodwrapper library, the linker doesn't seem to want to bring in libfmod.a unless I explicitly 00040 // reference at least one symbol in the library. This seemed like the simplest way. 00041 return (void*)&FSOUND_Init; 00042 }