mirror of
https://github.com/zoriya/react-native-svg.git
synced 2026-05-27 12:41:49 +00:00
b3b175a7fb
# Summary Due to the large number of example apps in the repository, I decided to change the structure and move all applications into an "apps" folder to maintain a clear structure.
39 lines
932 B
C
39 lines
932 B
C
// pch.h : include file for standard system include files,
|
|
// or project specific include files that are used frequently, but
|
|
// are changed infrequently
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#include "targetver.h"
|
|
|
|
#define NOMINMAX 1
|
|
#define WIN32_LEAN_AND_MEAN 1
|
|
#define WINRT_LEAN_AND_MEAN 1
|
|
|
|
// Windows Header Files
|
|
#include <windows.h>
|
|
#undef GetCurrentTime
|
|
#include <pathcch.h>
|
|
#include <unknwn.h>
|
|
|
|
// WinRT Header Files
|
|
#include <winrt/base.h>
|
|
|
|
#include <CppWinRTIncludes.h>
|
|
#include <winrt/Microsoft.ReactNative.Composition.h>
|
|
#include <winrt/Microsoft.ReactNative.h>
|
|
#include <winrt/Microsoft.UI.Composition.h>
|
|
#include <winrt/Microsoft.UI.Content.h>
|
|
#include <winrt/Microsoft.UI.Dispatching.h>
|
|
#include <winrt/Microsoft.UI.Windowing.h>
|
|
#include <winrt/Microsoft.UI.interop.h>
|
|
|
|
// C RunTime Header Files
|
|
#include <malloc.h>
|
|
#include <memory.h>
|
|
#include <stdlib.h>
|
|
#include <tchar.h>
|
|
|
|
// Reference additional headers your project requires here
|