File tree Expand file tree Collapse file tree 2 files changed +25
-41
lines changed
Expand file tree Collapse file tree 2 files changed +25
-41
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1- // Copyright (c) Microsoft Corporation.
2- // Licensed under the MIT License.
1+ // pch.h : include file for standard system include files,
2+ // or project specific include files that are used frequently, but
3+ // are changed infrequently
4+ //
5+
36#pragma once
47
5- #define NOMINMAX
8+ #include "targetver.h"
69
7- #include <functional>
10+ #define NOMINMAX 1
11+ #define WIN32_LEAN_AND_MEAN 1
12+ #define WINRT_LEAN_AND_MEAN 1
13+
14+ // Windows Header Files
15+ #include <windows.h>
16+ #undef GetCurrentTime
817#include <unknwn.h>
918
19+ // WinRT Header Files
20+ #include <winrt/base.h>
21+ #include <CppWinRTIncludes.h>
1022#include <winrt/Microsoft.ReactNative.h>
23+
24+ // C RunTime Header Files
25+ #include <malloc.h>
26+ #include <memory.h>
27+ #include <stdlib.h>
28+ #include <tchar.h>
29+
30+ // Reference additional headers your project requires here
31+ #include <functional>
1132#include <winrt/Windows.ApplicationModel.Core.h>
1233#include <winrt/Windows.Data.Json.h>
1334#include <winrt/Windows.Foundation.Collections.h>
You can’t perform that action at this time.
0 commit comments