Re: DLL Questions
- Posted by Bernie <xotron at PCOM.NET> Jul 18, 2000
- 410 views
David: Are you aware that you can prevent name-magling to any C code when you are using a CPP by using extern. To do a whole include file do this. extern "C" { #include "aheader.h" }; for a single function do this. extern "C" { int foo( ); } Bernie