Summary:
This change is the direct results of doing the following:
npx react-native-windows-init --overwrite
Notes: ignore the format warnings below. In this case, the ordering of includes does matter. Missing license is for auto-generated files, so ignore too.
Reviewed By: aigoncharov
Differential Revision: D36775215
fbshipit-source-id: 1cd00ff2bfc258c8505e97dcdbd9cb4365c4acfb
37 lines
940 B
C++
37 lines
940 B
C++
/*
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
// clang-format off
|
|
|
|
#define NOMINMAX
|
|
|
|
#include <unknwn.h>
|
|
#include <CppWinRTIncludes.h>
|
|
#include <UI.Xaml.Controls.Primitives.h>
|
|
#include <UI.Xaml.Controls.h>
|
|
#include <UI.Xaml.Markup.h>
|
|
#include <UI.Xaml.Navigation.h>
|
|
#include <VersionMacros.h>
|
|
#include <hstring.h>
|
|
#include <restrictederrorinfo.h>
|
|
|
|
#include <windows.h>
|
|
#include <winrt/Windows.ApplicationModel.Activation.h>
|
|
|
|
#include <winrt/Microsoft.ReactNative.h>
|
|
|
|
#include <winrt/Microsoft.UI.Xaml.Automation.Peers.h>
|
|
#include <winrt/Microsoft.UI.Xaml.Controls.Primitives.h>
|
|
#include <winrt/Microsoft.UI.Xaml.Controls.h>
|
|
#include <winrt/Microsoft.UI.Xaml.Media.h>
|
|
#include <winrt/Microsoft.UI.Xaml.XamlTypeInfo.h>
|
|
using namespace winrt::Windows::Foundation;
|
|
|
|
// clang-format on
|