Files
UnrealEngine/Engine/Source/Programs/EpicWebHelper/Private/EpicWebHelperLibCEFIncludes.h
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05: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