dll.html "Writing Win32 DLLs in D" includes an example def-file with the line DATA PRELOAD SINGLE which causes multiple processes that use the same DLL to share memory. This is not the normal use case for DLLs and causes crashes. It should be DATA PRELOAD MULTIPLE
Commit pushed to https://github.com/D-Programming-Language/d-programming-language.org https://github.com/D-Programming-Language/d-programming-language.org/commit/4d000634ac725e6ee7bf60a69fbf951207a6fefe fix Issue 3886 - Bad example of definition file for DLLs