Jul 5, 2024 0 1 How do I produce a Windows Runtime asynchronous activity from C++/WinRT? Raymond Chen Somebody that deals with them natively.
Jul 4, 2024 2 3 How do I produce a Windows Runtime asynchronous activity from C#? Raymond Chen The AsyncInfo helper class converts Tasks to Windows Runtime asynchronous activities.
Jul 3, 2024 1 0 How do I produce a Windows Runtime asynchronous activity from C++/CX? Raymond Chen The Parallel Patterns Library has special support for C++/CX.
Jul 1, 2024 5 2 If I register the same shell extension as both a context menu extension and a drag/drop extension, how do I know which one the system is using? Raymond Chen Who forced you to register the same shell extension for both?
Jun 28, 2024 2 1 Writing a remove_all_pointers type trait, part 2 Raymond Chen Factoring out the type resolution to after the dangerous part.
Jun 27, 2024 3 1 Writing a remove_all_pointers type trait, part 1 Raymond Chen Delaying the expansion to avoid infinite recursion.
Jun 26, 2024 2 0 Is there a built-in way in C++/WinRT to get the string name for a Windows Runtime enum? Raymond Chen No, and maybe you don't want to.
Jun 24, 2024 7 0 Finding a specific value in a sequence of integers that changes by at most 1 Raymond Chen It's basically a discrete version of the intermediate value theorem.
Jun 21, 2024 1 0 The Windows Runtime winrt::hstring and the C++ std::wstring are inter-assignable Raymond Chen Just assign them over, no cermony necessary.
Jun 20, 2024 0 2 How to convert between different types of counted-string string types Raymond Chen Looking for constructors that take a character count.