Could someone provide a tutorial or docs about how to do delay load a dll on windows with mingw64? I searched online and couldn't find helpful information. I have a main driver application depends on a library (compA.dll), I would like to delay load compA.dll so that I can add its path when application starts. I did successfully with VS2015, but don't know how to do the same thing with mingw64. I tried with these steps: 1. gendef compA.dll I got compA.def file 2. dlltool.exe --input-def compA.def...