Is there any way to know which functions are exported from the dll
through python foreign function library ctypes
?
And if possible to know details about the exported functions through ctypes
.
If yes, could someone provide a snippet of code?
If you are on Linux, there is a handy utility nm
to list the content of a shared library (there is always a handy utility on Linux, especially for C stuff).
Here is the question about it.
You use it with the -D
flag: nm -D ./libMyLib.so