Files
ionut matasaru edcb3ea2e3 [Insights] New TraceAnalyzer tool. Converts a utrace file into a text file. It also logs the trace analysis process and outputs several stats regarding trace content.
#rb Johan.Berg, Catalin.Dragoiu
[FYI] Martin.Ridgers

[CL 29280230 by ionut matasaru in ue5-main branch]
2023-10-31 12:51:06 -04:00

21 lines
292 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreTypes.h"
namespace UE
{
namespace TraceAnalyzer
{
struct FCommand
{
const TCHAR* Name;
const TCHAR* Description;
int32 (*Main)(int32, TCHAR const* const*);
};
} // namespace TraceAnalyzer
} // namespace UE