Hi All,
I have library named libtest.so
I need to get all the method names from the library with the return type.
By using -nm linux command i could get the method names but not the return type of the method.
Is there any other mrthod to get the method names.
return type of a normal function is not built into the function's signature, therefor you cannot get it from library. Find out the library's header is the only way.