I've asked in this post how to enumerate the methods of a C++ dll l ibrary, and here I've found the solution P/Invoking the dbghelp.dll library.
My question is:
Using dbghelp.dll once I've got a method name, can I retrieve its overloads (if they exist) and its parameter types to know how I should call that method inside?
In this MSDN url are the functions documentation of the dbghelp.dll lib, but I'm not sure whether one of the functions could help me.
PS: My knowledges about PE are very low, that's why I'm asking a solution P/invoking other methods, but if is not possible using dbghelp.dll I would like to know the alternatives and the steps to accomplish the task.