Files
UnrealEngineUWP/Engine/Source/Developer/Windows/LiveCodingServer/Private/External/LC_SymbolReconstruction.h
Tim Smith b48b94b010 Integration of Live++ 1.6.3
#rb none
#rnx

[CL 14926202 by Tim Smith in ue5-main branch]
2020-12-15 09:27:44 -04:00

29 lines
672 B
C++

// Copyright 2011-2020 Molecular Matters GmbH, all rights reserved.
#pragma once
// BEGIN EPIC MOD
#include "CoreTypes.h"
// END EPIC MOD
#include "LC_Coff.h"
#include "LC_Symbols.h"
#include "LC_Executable.h"
namespace symbols
{
void ReconstructFromExecutableCoff
(
const symbols::Provider* provider,
const executable::Image* image,
const executable::ImageSectionDB* imageSections,
const coff::CoffDB* coffDb,
const types::StringSet& strippedSymbols,
const symbols::ObjPath& objPath,
const symbols::ContributionDB* contributionDb,
const symbols::ThunkDB* thunkDb,
const symbols::ImageSectionDB* imageSectionDb,
symbols::SymbolDB* symbolDB
);
}