Files
UnrealEngineUWP/Engine/Source/ThirdParty/Windows/VisualStudioDTE/VisualStudioDTE.h
ben marsh e7088a6201 Disable standard warnings around Visual Studio DTE headers.
#rb none
#rnx
#jira

#ROBOMERGE-SOURCE: CL 12387438 in //UE4/Release-4.25/... via CL 12387439
#ROBOMERGE-BOT: RELEASE (Release-4.25Plus -> Main) (v671-12333473)

[CL 12387440 by ben marsh in Main branch]
2020-03-24 08:47:58 -04:00

27 lines
633 B
C

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "Windows/WindowsHWrapper.h"
#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"