You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
26 lines
596 B
C
26 lines
596 B
C
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "Windows/AllowWindowsPlatformTypes.h"
|
|
#include "Windows/AllowWindowsPlatformAtomics.h"
|
|
#include <unknwn.h>
|
|
|
|
#if WITH_VISUALSTUDIO_DTE
|
|
THIRD_PARTY_INCLUDES_START
|
|
#pragma warning(push)
|
|
#pragma warning(disable: 4278)
|
|
#pragma warning(disable: 4471)
|
|
#pragma warning(disable: 4146)
|
|
#pragma warning(disable: 4191)
|
|
#pragma warning(disable: 6244)
|
|
|
|
#include "dte80a.tlh"
|
|
|
|
#pragma warning(pop)
|
|
THIRD_PARTY_INCLUDES_END
|
|
#endif
|
|
|
|
#include "Windows/HideWindowsPlatformAtomics.h"
|
|
#include "Windows/HideWindowsPlatformTypes.h"
|