In my C++/WinRT project, I am trying to run some code on UI thread but getting an error that says:
\"winrt::impl::consume_Windows_UI_Core_ICoreDispatc
This is the result of a fairly new addition to the C++/WinRT library. Using return type deduction in the generated files turns what used to trigger a linker error into a compiler error. A compiler error is favorable for several reasons:
The reason for the error diagnostic is a missing #include
directive for the header file that contains the full definition of the type in question. Identifying the missing include is usually straight forward. The error message includes the missing type name, taking the following form
winrt::impl::consume_<namespace1>_<namespace2>_..._<some_interface>
The respective header file is underneath the winrt
directory, whose name is the dot-separated concatenation of namespaces, followed by .h
.
In this case the missing type is
winrt::impl::consume_Windows_UI_Core_ICoreDispatcher<winrt::Windows::UI::Core::ICoreDispatcher>
so you need to #include <winrt/Windows.UI.Core.h>
into the compilation unit that's using the ICoreDispatcher
interface.
Raymond Chen has more background information on the topic in his blog entry titled Why does my C++/WinRT project get errors of the form “consume_Something: function that returns ‘auto’ cannot be used before it is defined”?.