You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Intended for writing unit, integration, functional and all types of tests. #jira UEENGQA-49764 #rb Jerome.Delattre [CL 17666358 by chris constantinescu in ue5-main branch]
16 lines
418 B
C
16 lines
418 B
C
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
//Read command line arguments from file to add on top of the real ones. Specify valid directory with separator at the end and path real command line arguments.
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
const char** ReadAndAppendAdditionalArgs(const char* FileDir, int* OutNumArgs, const char** Argv, int Argc);
|
|
|
|
#ifdef __cplusplus
|
|
} //extern "C"
|
|
#endif |