You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira UE-110192 #jira UE-110195 #jira UE-110196 [FYI] wes.fudala [FYI] JeanFrancois.Dube #horde 47017 #horde 47016 #ROBOMERGE-SOURCE: CL 15657948 in //UE5/Release-5.0-EarlyAccess/... #ROBOMERGE-BOT: STARSHIP (Release-5.0-EarlyAccess -> Main) (v779-15635321) [CL 15657981 by alfred reynolds in ue5-main branch]
39 lines
822 B
C
39 lines
822 B
C
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#if WITH_CEF3
|
|
|
|
#ifndef OVERRIDE
|
|
# define OVERRIDE override
|
|
#endif //OVERRIDE
|
|
|
|
#if PLATFORM_WINDOWS
|
|
# include "Windows/WindowsHWrapper.h"
|
|
# 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
|