Calling a function from Shared Library (.so) in c++

Hi,
I have a .so file created in C++, I need to write another c++ program that call methods of this shared library. Any Ideas how to do this

Thanks in advance!

Cheers
Farooq
You'll the header/s that declare the functions and data used by that library. Just include the header and link the library while compiling.
Thanks for the reply.
I am new to c++ programming, can you please point to any example of how to declare headers (for functions and data )used by the library and then using that header in my c++ code by adding or including it.

Farooq
Topic archived. No new replies allowed.