Problem:
The following commad will give you information about what is the list of imports for a particular .exe or .dll.
Resolution:
At the command prompt:
link /dump /imports prog.exe > report.txt
notepad report.txt
report.txt will show cblrtss.dll if prog.exe is pulling the Micro Focus single threaded runtime, or cblrtsm.dll if prog.exe is pulling the Micro Focus multithreaded runtime.
report.txt should also show other dlls that are been pulled when prog.exe is loaded.
The same command would work the same for prog.dll instead of prog.exe.