View the output function list of DLL

Sometimes, we need to check the output function list of a dynamic link library.
There are many software that can meet this requirement, such as exeScope.
However, it is always very troublesome to download a software. Delphi itself comes with a similar tool, that is, tdump.exe, which is available in all versions of Delphi.
It is a command line program under the Bin directory of the Delphi installation directory.
usage:
tdump.exe D:\example.dll
The above command will output the list of functions exported by the DLL on the console; you can also save the output information of the console to a file, using the following command format:
tdump.exe D:\Example.dll out.txt