Nov 21, 2025 Post comments count6 Post likes count2 Maybe somebody can explain to me how weak references solve the ODR problem Raymond Chen I don't see it.
Nov 20, 2025 Post comments count11 Post likes count3 In the commit-on-demand pattern, what happens if an access violation straddles multiple pages? Raymond Chen The access violation exceptions will continue until commit improves.
Nov 19, 2025 Post comments count3 Post likes count8 Is WriteProcessMemory faster than shared memory for transferring data between two processes? Raymond Chen Shared memory is the copy-free solution.
Nov 17, 2025 Post comments count21 Post likes count3 How can I detect that Windows is running in S-Mode, redux Raymond Chen Doing it on hard mode.
Nov 13, 2025 Post comments count4 Post likes count2 Could we use CTAD to simplify the use of WRL’s Callback function? Raymond Chen Not directly, but maybe indirectly.
Nov 12, 2025 Post comments count5 Post likes count6 Non-recursively deleting a binary tree in constant space: Rotating the tree Raymond Chen Preserving in-order while linearizing.
Nov 7, 2025 Post comments count3 Post likes count1 Non-recursively deleting a binary tree in constant space: Restructuring the tree Raymond Chen Changing the tree structure to make it easier to delete.
Nov 6, 2025 Post comments count3 Post likes count1 Non-recursively deleting a binary tree in constant space: Synthesizing the parent pointer Raymond Chen Making one as you go.
Nov 5, 2025 Post comments count11 Post likes count2 Non-recursively deleting a binary tree in constant space: Traversal with parent pointers Raymond Chen First assume that you have a parent pointer.
Oct 30, 2025 Post comments count8 Post likes count3 Trying to build a XAML tree in code throws a “No installed components were detected” exception Raymond Chen An unfortunate error code collision, but the explanatory text leads the way.