Files
UnrealEngineUWP/Engine/Source/Programs/EpicWebHelper/Private/EpicWebHelperLibCEFIncludes.h
david harvey bdb4199eeb Remove unnecessary WindowsHWrapper.h & MinWindows.h include - both files will be automatically included by AllowWindowsPlatformTypes.h
#jira UE-152863
#rnx
#rb Josh.Adams

[CL 26912096 by david harvey in ue5-main branch]
2023-08-08 05:50:53 -04:00

38 lines
784 B
C

// Copyright Epic Games, Inc. All Rights Reserved.
#if WITH_CEF3
#ifndef OVERRIDE
# define OVERRIDE override
#endif //OVERRIDE
#if PLATFORM_WINDOWS
# include "Windows/AllowWindowsPlatformTypes.h"
# include "Windows/AllowWindowsPlatformAtomics.h"
#endif
THIRD_PARTY_INCLUDES_START
# if PLATFORM_APPLE
PRAGMA_DISABLE_DEPRECATION_WARNINGS
# endif //PLATFORM_APPLE
# pragma push_macro("OVERRIDE")
# undef OVERRIDE // cef headers provide their own OVERRIDE macro
# include "include/cef_app.h"
# pragma pop_macro("OVERRIDE")
# if PLATFORM_APPLE
PRAGMA_ENABLE_DEPRECATION_WARNINGS
# endif //PLATFORM_APPLE
THIRD_PARTY_INCLUDES_END
#if PLATFORM_WINDOWS
# include "Windows/HideWindowsPlatformAtomics.h"
# include "Windows/HideWindowsPlatformTypes.h"
#endif
#endif //WITH_CEF3