I have a shared object(dll). How do i find out what all symbols are exported from that?
Use: nm --demangle <libname>.so
nm --demangle <libname>.so
On *nix check nm. On windows use the program Dependency Walker
Usually, you would also have a header file that you include in your code to access the symbols.