Jul 11, 2025 Post comments count0 Post likes count1 Detecting and reporting all unhandled C++ exceptions as well as all unhandled structured exceptions Raymond Chen Closing another exit point.
Jul 10, 2025 Post comments count5 Post likes count2 Our first attempt to detect and report all unhandled C++ exceptions as well as all unhandled structured exceptions Raymond Chen Identifying and classifying the exit points.
Jul 9, 2025 Post comments count2 Post likes count4 When I install an unhandled structured exception filter, why doesn’t std::terminate get called? Raymond Chen You're using the same hook that the compiler uses to call std::terminate.
Jul 4, 2025 Post comments count3 Post likes count0 Why doesn’t LVIF_INDENT work without an image list? Raymond Chen Its original client had an image list.
Jul 3, 2025 Post comments count0 Post likes count1 If the FormatMessage function fails, and I requested that it allocate a buffer, do I have to free the buffer? Raymond Chen There was no buffer returned, so there's nothing to free anyway.
Jul 2, 2025 Post comments count1 Post likes count1 Unintended yet somehow entirely expected consequences of marking a COM interface as local Raymond Chen If it's local-only, then it can't be remote.
Jun 30, 2025 Post comments count16 Post likes count3 Embracing the power of the empty set in API design: Requesting zero items Raymond Chen It's okay to ask for nothing. You get nothing.
Jun 27, 2025 Post comments count8 Post likes count0 Why do I get errors or warnings about some weird symbol called ?main@@YAHP$01E$AAV?$Array@PE$AAVString@Platform…, part 3 Raymond Chen Forcing main to be found in the place we want.
Jun 26, 2025 Post comments count0 Post likes count0 Why do I get errors about some weird symbol called ?main@@YAHP$01E$AAV?$Array@PE$AAVString@Platform…, part 2 Raymond Chen Figuring out why C++/CX makes a difference.
Jun 25, 2025 Post comments count1 Post likes count0 Why do I get errors about some weird symbol called ?main@@YAHP$01E$AAV?$Array@PE$AAVString@Platform…, part 1 Raymond Chen Welcome to the world of C++/CX. Is "welcome" the right word?