Why CreateProcess must not be called from a DllMain function?
问题 I've read in several sources that CreateProcess must not be called from a DllMain function. CreateProcess : Do not call CreateProcess from a DllMain function. This causes the application to stop responding. Dynamic-Link Library Best Practices: You should never perform the following tasks from within DllMain: Call CreateProcess. Creating a process can load another DLL. Question Why is that? it states that it causes the application to stop responding but this is just a symptom. what is the real