/IMPORTS (DUMPBIN)
/IMPORTS[:file]
This option displays the list of DLLs (both statically linked and delay loaded) that are imported to an executable file or DLL and all the individual imports from each of these DLLs.
The optional file
specification allows you to specify that the imports for only that DLL will be displayed. For example:
dumpbin /IMPORTS:msvcrt.dll
Remarks
The output displayed by this option is similar to the /EXPORTS output.
Only the /HEADERS DUMPBIN option is available for use on files produced with the /GL compiler option.