Skip to content

Commit 8d1cbb5

Browse files
committed
fix pch.h and untrack ExperimentalFeatures.props
1 parent cb4ee8d commit 8d1cbb5

File tree

2 files changed

+25
-41
lines changed

2 files changed

+25
-41
lines changed

packages/default-storage/example/windows/ExperimentalFeatures.props

Lines changed: 0 additions & 37 deletions
This file was deleted.

packages/default-storage/windows/code/pch.h

Lines changed: 25 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,34 @@
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>

0 commit comments

Comments
 (0)