﻿// C++/WinRT v1.0.180821.2

// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

#pragma once
#include "winrt/impl/Windows.ApplicationModel.Core.1.h"
#include "winrt/impl/Windows.Foundation.1.h"
#include "winrt/impl/Windows.UI.StartScreen.1.h"
#include "winrt/impl/Windows.UI.Shell.1.h"

WINRT_EXPORT namespace winrt::Windows::UI::Shell {

}

namespace winrt::impl {

}

WINRT_EXPORT namespace winrt::Windows::UI::Shell {

struct AdaptiveCardBuilder
{
    AdaptiveCardBuilder() = delete;
    static Windows::UI::Shell::IAdaptiveCard CreateAdaptiveCardFromJson(param::hstring const& value);
};

struct WINRT_EBO SecurityAppManager :
    Windows::UI::Shell::ISecurityAppManager
{
    SecurityAppManager(std::nullptr_t) noexcept {}
    SecurityAppManager();
};

struct WINRT_EBO TaskbarManager :
    Windows::UI::Shell::ITaskbarManager,
    impl::require<TaskbarManager, Windows::UI::Shell::ITaskbarManager2>
{
    TaskbarManager(std::nullptr_t) noexcept {}
    static Windows::UI::Shell::TaskbarManager GetDefault();
};

}
