Is there a tool that displays exported methods from a DLL?

As the question says - is there a good tool that lists unmanaged DLL export methods? I would like it to also display COM methods and interfaces.

+4
source share
3 answers

For a DLL, use the dependency viewer ( depend.exe ).

For COM objects, use oleview.exe

+12
source

See Dependency Walker for a list of unmanaged functions exported from a DLL.

You cannot easily get l a list of COM classes exported from a DLL. What you need to do is something like registries and find all the objects that reference the corresponding DLL. DLLs advertise their classes through registry registration ...

+1
source

As a wrapper application, we use a utility that controls (or uploads) registration information - WiseComCapture.exe - is part of Wise Package Studio, but which is not free. It issues a .reg file of all registration information.

A bit of noodles with Google could “expose” it

0
source

Source: https://habr.com/ru/post/1277681/


All Articles