Windows 10 SDK preview build 17733 now available for developers

Microsoft this week made available another new Windows 10 SDK preview build for developers to check out. This week's release ups the build number to 17733, which lines up with the Fast ring build released last week but lags behind the latest, 17738, rolled out this week.

As with other recent SDK releases, there's not much new here other than some under-the-hood bug fixes and changes to the API surface area. Here's a recap of some of the highlights that have come along in other recent builds.

  • Support get_strong and get_weak to create delegates: This update allows a developer to use either get_strong or get_weak instead of a raw this pointer when creating a delegate pointing to a member function.
  • Add async cancellation callback: The most frequently requested feature for C++/WinRT's coroutine support has been the addition of a cancellation callback.
  • Simplify the use of APIs expecting IBuffer parameters: Although most APIs prefer collections or arrays, enough APIs rely on IBuffer that it should be easier to use such APIs from C++. This update provides direct access to the data behind an IBuffer implementation using the same data naming convention used by the C++ standard library containers. This also avoids colliding with metadata names that conventionally begin with an uppercase letter.
  • Conformance: Improved support for Clang and Visual C++'s stricter conformance modes.
  • Improved code gen: Various improvements to reduce code size, improve inlining, and optimize factory caching.
  • Remove unnecessary recursion: When the command line refers to a folder rather than a specific winmd, cppwinrt will no longer search recursively for winmd files. It causes performance problems in the OS build and can lead to usage errors that are hard to diagnose when developers inadvertently cause cppwinrt to consume more winmds than expected. The cppwinrt compiler also now handles duplicates more intelligently, making it more resilient to user error and poorly-formed winmd files.
  • Declare both WINRT_CanUnloadNow and WINRT_GetActivationFactory in base.h: Callers don't need to declare them directly. Their signatures have also changed, amounting to a breaking change. The declarations alleviate most of the pain of this change. The change is necessitated by the fact that C++/WinRT no longer depends on the Windows headers and this change removes the dependency on the types from the Windows headers.
  • Harden smart pointers: The event revokers didn't revoke when move-assigned a new value. This lead us to take a closer look at the smart pointer classes and we noticed that they were not reliably handling self-assignment. This is rooted in the com_ptr class template that most of the others rely on. We fixed com_ptr and updated the event revokers to handle move semantics correctly to ensure that they revoke upon assignment. The handle class template has also been hardened by the removal of the implicit constructor that made it easy to write incorrect code. This also turned bugs in the OS into compiler errors fixed in this PR.

If you're a developer, you can grab Windows 10 SDK preview build 17733 from Microsoft's download page now.

Dan Thorp-Lancaster

Dan Thorp-Lancaster is the former Editor-in-Chief of Windows Central. He began working with Windows Central, Android Central, and iMore as a news writer in 2014 and is obsessed with tech of all sorts. You can follow Dan on Twitter @DthorpL and Instagram @heyitsdtl