// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved. #pragma once #include "Core.h" #if WITH_CEF3 #if PLATFORM_WINDOWS #include "AllowWindowsPlatformTypes.h" #endif #pragma push_macro("OVERRIDE") #undef OVERRIDE // cef headers provide their own OVERRIDE macro #include "include/cef_app.h" #pragma pop_macro("OVERRIDE") #if PLATFORM_WINDOWS #include "HideWindowsPlatformTypes.h" #endif /** * The application's main function. * * @param MainArgs Main Arguments for the process (created differently on each platform). * @return Application's exit value. */ int32 RunCEFSubProcess(const CefMainArgs& MainArgs); #endif