I need to statically link dbghelp.lib to my VS C++ application in order to obtain a dump on crash from customer machines. We have a thoroughly nonsensical requirement that the application must be a single executable file with no installation required. That is the reason I do not dynamically link to dbghelp.dll, as that would be another file to include.
Can I legally do this? Am I running afoul of some arcane EULA somewhere?
I did not fully understand what "statically linking dbghelp.lib" meant. I'm still using the dll, and that's included in Windows, so there is no additional redistribution.