I have my own custom.dll (C++, Windows) library which depends on : zlib.dll, iconv.dll, etc. The custom.dll is loaded by custom.exe.
Is there way in C++/WinAPI to find list of modules custom.dll depends in runtime?
There is function EnumProcessModules which works for process.
Is there something for dynamic library loaded by process? As sample, the dependecy walker utility, fileInfo plugin display this information properly.