Files
UnrealEngine/Engine/Source/Developer/Windows/LiveCodingServer/Private/External/LC_SymbolResolution.h
2025-05-18 13:04:45 +08:00

17 lines
293 B
C++

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