///////////////////////////////////////////////////////////////////////////// // Rev 11/12/2003 // // // HELLOSTAT.CPP // ------------- // // // Sylvain MARECHAL - sylvain.marechal1@libertysurf.fr ///////////////////////////////////////////////////////////////////////////// // DLL and unix - static link // // Sylvain Marechal // // Dont forget to set LD_LIBRARY_PATH to the path where // resides libshared.so : // export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:. ///////////////////////////////////////////////////////////////////////////// #include #include "shared.h" main() { // C example HelloShared(1234); // C++ example CHelloShared HS; HS.Hello(5678); return 0; }