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
+
3
6
#pragma once
4
7
5
- #define NOMINMAX
8
+ #include "targetver.h"
6
9
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
8
17
#include <unknwn.h>
9
18
19
+ // WinRT Header Files
20
+ #include <winrt/base.h>
21
+ #include <CppWinRTIncludes.h>
10
22
#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>
11
32
#include <winrt/Windows.ApplicationModel.Core.h>
12
33
#include <winrt/Windows.Data.Json.h>
13
34
#include <winrt/Windows.Foundation.Collections.h>
You can’t perform that action at this time.
0 commit comments