Oct 3, 2022 Post comments count0 Post likes count1 Feel free to stop using IMultiLanguage2::DetectInputCodepage Raymond Chen You should have been keeping your eye on the code page all along.
Sep 30, 2022 Post comments count1 Post likes count1 Debugging coroutine handles: Looking for the source of a one-byte memory corruption Raymond Chen Applying what we know about coroutines.
Sep 26, 2022 Post comments count3 Post likes count1 What does the C++ error “A pointer to a bound function may only be used to call the function” mean? Raymond Chen You got all set to call a function but forgot to call it.
Sep 23, 2022 Post comments count1 Post likes count1 Why am I receiving SHCNE_UPDATEDIR notifications that my code never generates? Raymond Chen You did generate them, indirectly.
Sep 22, 2022 Post comments count0 Post likes count1 How can I get WRL to link my object into its activation factory? Raymond Chen More magic macros.
Sep 21, 2022 Post comments count3 Post likes count5 How can I trigger a recalc of the mouse cursor after I changed some of my internal application state? Raymond Chen Go through the standard process one more time.
Sep 19, 2022 Post comments count11 Post likes count3 Why load fs:[0x18] into a register and then dereference that, instead of just going for fs:[n] directly? Raymond Chen Simplifying the compiler.
Sep 16, 2022 Post comments count0 Post likes count4 Serializing asynchronous operations in C++/WinRT, gotchas and final assembly Raymond Chen Cancellation and abandonment.
Sep 15, 2022 Post comments count0 Post likes count4 Serializing asynchronous operations in C++/WinRT Raymond Chen Making them run one after the other.
Sep 14, 2022 Post comments count0 Post likes count3 Creating a lazy-start C++/WinRT coroutine from an eager-start one, part 2 Raymond Chen Keeping a turkey in suspense.