Nov 21, 2025 Post comments count3 Post likes count0 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 count2 Post likes count1 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 count6 Is WriteProcessMemory faster than shared memory for transferring data between two processes? Raymond Chen Shared memory is the copy-free solution.
Nov 18, 2025 Post comments count1 Post likes count4 Microspeak: Little-r Raymond Chen Harkening back to a very old mail program.
Nov 17, 2025 Post comments count21 Post likes count2 How can I detect that Windows is running in S-Mode, redux Raymond Chen Doing it on hard mode.
Nov 14, 2025 Post comments count9 Post likes count2 I can use WM_COPYDATA to send a block of data to another window, but how does it send data back? Raymond Chen They can send it back with their own WM_COPYDATA message, or they can put it in an agreed-upon shared location.
Nov 13, 2025 Post comments count5 Post likes count1 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 count2 Non-recursively deleting a binary tree in constant space: Rotating the tree Raymond Chen Preserving in-order while linearizing.
Nov 11, 2025 Post comments count7 Post likes count4 Behind the scenes on how Windows 95 application compatibility patched broken programs Raymond Chen Replacing bytes with the greatest of care.
Nov 10, 2025 Post comments count0 Post likes count2 How did Windows 3.1 distinguish two different programs that happened to share the same executable name? Raymond Chen The trouble with disambiguation.