Hi All,
I want to know how to list the all the symbols in the shared library(dll or .so file).
I dont want commands like nm or objdump.
I want to get the list of functions available in shared library programmatically at runtime (after calling dlopen and dlsym).
Is there a way to get the complete signature of functions in a shared library??

Please help.

Regards
nrhayyal

You can get a list of exported functions (the name specifically), but not the full signature; that information is lost during compilation.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.