51 lines
1.8 KiB
C++
51 lines
1.8 KiB
C++
// Copyright (c) Microsoft Corporation and Contributors.
|
|
// Licensed under the MIT License.
|
|
|
|
#pragma once
|
|
#include <windows.h>
|
|
#include <unknwn.h>
|
|
#include <restrictederrorinfo.h>
|
|
#include <hstring.h>
|
|
#include <objbase.h>
|
|
#include <sstream>
|
|
|
|
// Undefine GetCurrentTime macro to prevent
|
|
// conflict with Storyboard::GetCurrentTime
|
|
#undef GetCurrentTime
|
|
|
|
#include <winrt/Windows.ApplicationModel.Activation.h>
|
|
#include <winrt/Windows.Foundation.h>
|
|
#include <winrt/Windows.Foundation.Collections.h>
|
|
#include <winrt/Windows.Foundation.Metadata.h>
|
|
#include <winrt/Windows.Graphics.Imaging.h>
|
|
#include <winrt/Windows.Storage.Streams.h>
|
|
#include <winrt/Windows.UI.h>
|
|
#include <winrt/Windows.UI.Core.h>
|
|
#include <winrt/Windows.UI.Shell.h>
|
|
#include <winrt/Microsoft.UI.h>
|
|
#include <winrt/Microsoft.UI.Composition.h>
|
|
#include <winrt/Microsoft.UI.Dispatching.h>
|
|
#include <winrt/Microsoft.UI.Interop.h>
|
|
#include <winrt/Microsoft.UI.Xaml.h>
|
|
#include <winrt/Microsoft.UI.Xaml.Controls.h>
|
|
#include <winrt/Microsoft.UI.Xaml.Controls.Primitives.h>
|
|
#include <winrt/Microsoft.UI.Xaml.Data.h>
|
|
#include <winrt/Microsoft.UI.Xaml.Interop.h>
|
|
#include <winrt/Microsoft.UI.Xaml.Markup.h>
|
|
#include <winrt/Microsoft.UI.Xaml.Media.h>
|
|
#include <winrt/Microsoft.UI.Xaml.Media.Imaging.h>
|
|
#include <winrt/Microsoft.UI.Xaml.Navigation.h>
|
|
#include <winrt/Microsoft.UI.Xaml.Shapes.h>
|
|
#include <winrt/AppTabsIntegration.h>
|
|
#include <wil/cppwinrt_helpers.h>
|
|
#include <Microsoft.UI.Xaml.Window.h>
|
|
|
|
// Verify that the correct WindowsDesktop reference has been added.
|
|
namespace winrt::Windows::UI::Shell
|
|
{
|
|
struct WindowTabManager;
|
|
struct IWindowTabManager;
|
|
static_assert(std::is_same_v<winrt::default_interface<WindowTabManager>, IWindowTabManager>,
|
|
"Please add a reference to the Windows Desktop Extension SDK, version 10.0.22621.1778 or higher.");
|
|
}
|