There is a DLL library. It is necessary to use its functions in its program. Which way to dig, to find out what and where?

I know only the names of the functions and that thanks to the DLL Export Viewer. How to find out arguments, etc.?

The library is not supplied officially.

  • What kind of library? Usually, when officially shipped, libraries are distributed with the lib and h files. - insolor

1 answer 1

Dynamic libraries for beginners ( archive link )

UPD. In general, prototypes are restored by disassembling. If the library exports C ++ functions with "decorated" names ( mangled names ), then the Export Viewer dll does quite well with restoring the function prototype.