17 lines
293 B
C++
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 |