Re: DLL Questions
- Posted by "Cuny, David at DSS" <David.Cuny at DSS.CA.GOV> Jul 18, 2000
- 400 views
Bernie wrote: > Are you aware that you can prevent name-magling > to any C code when you are using a CPP by using > extern. Thanks; that should help. I hacked a solution by wrapping the routine again, like this: double wrap_foo( double bar ) { foo( bar ); } but your solution looks a lot better. -- David Cuny