Sep 26, 2017 Post comments count0 Post likes count1 Who implemented the Windows NT blue screen of death? Raymond Chen My colleague John Vert.
Sep 25, 2017 Post comments count0 Post likes count2 What happens if I wake a condition variable when nobody is waiting for it? Is the wake saved for the next thread that waits? Raymond Chen It shouldn't matter.
Sep 22, 2017 Post comments count0 Post likes count1 What does it mean when I get an access violation at a very low address when entering a critical section? Raymond Chen It probably means that you're entering a critical section that is not initialized.
Sep 21, 2017 Post comments count0 Post likes count1 How accurate are the various Windows time-querying functions? Raymond Chen Most of them are based on the system timer, but some are better.
Sep 20, 2017 Post comments count0 Post likes count1 What is the correct way of using SaveDC and RestoreDC? Raymond Chen Understanding the model.
Sep 19, 2017 Post comments count0 Post likes count2 The NET HELPMSG command will decode Windows error codes, at least the simple ones Raymond Chen It's originally for decoding network error messages, but it doesn't actually care.
Sep 18, 2017 Post comments count0 Post likes count1 The increasingly complex Kremlinology surrounding Windows Raymond Chen Wait, who's standing next to whom?
Sep 15, 2017 Post comments count0 Post likes count1 How can I diagnose why my FreeLibrary isn’t freeing the library? Raymond Chen Application Verifier to the rescue.
Sep 14, 2017 Post comments count0 Post likes count1 Why is my window unexpectedly becoming topmost? Raymond Chen There are a few places where the system will auto-topmost a window.
Sep 13, 2017 Post comments count0 Post likes count1 What is the correct way of using the string buffer returned by the WindowsPreallocateStringBuffer function? Raymond Chen Write the characters you allocated, but only those characters.