17 lines
336 B
C++
17 lines
336 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#include "EpicWebHelper.h"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
#if WITH_CEF3
|
|
// Structure for passing command-line arguments.
|
|
// The definition of this structure is platform-specific.
|
|
CefMainArgs MainArgs(argc, argv);
|
|
|
|
return RunCEFSubProcess(MainArgs);
|
|
#else
|
|
return 0;
|
|
#endif
|
|
}
|