Files
UnrealEngineUWP/Engine/Source/Developer/Windows/LiveCodingServer/Private/External/LC_SymbolResolution.h
Ben Marsh 5651dbf4cd Integrating changes from Live++ 1.4.1.
#rb none

[CL 5919984 by Ben Marsh in Dev-Build branch]
2019-04-16 12:46:58 -04:00

16 lines
308 B
C++

// Copyright 2011-2019 Molecular Matters GmbH, all rights reserved.
#pragma once
#include "LC_SymbolInfo.h"
namespace symbolResolution
{
void Startup(void);
void Shutdown(void);
// Resolves the symbol information for a given address
SymbolInfo ResolveSymbolsForAddress(const void* const address);
}