I have a short question about Windows 10 development with cpp:
When should i use <windows.ui.notifications.h> and when <winrt/Windows.UI.Notifications.h>, and why are there two versions of this header.
I found out that windows.ui.notifications.h is in windowssdk.......\include\winrt and <winrt/Windows.UI.Notifications.h> is in windowssdk....\include\cppwinrt.
And windows.ui.notifications.h contains also namespaces like ABI::Windows::Data::Xml::Dom; whereas <winrt/Windows.UI.Notifications.h> does not contains these namespaces but the winrt namespace. So what should i use for what??? why are there the same headers but with such differences?
-- but i thought that for example, Windows::Data::Xml::Dom should be in Windows.Data.Xml.Dom.h and not accessible via the notifications header.
Can someone please help?