34 lines
475 B
C++
34 lines
475 B
C++
|
|
#pragma once
|
|
|
|
#if !defined(MIJIN_DEBUG_SYMBOL_INFO_HPP_INCLUDED)
|
|
#define MIJIN_DEBUG_SYMBOL_INFO_HPP_INCLUDED 1
|
|
|
|
#include <string>
|
|
|
|
namespace mijin
|
|
{
|
|
|
|
//
|
|
// public defines
|
|
//
|
|
|
|
//
|
|
// public constants
|
|
//
|
|
|
|
//
|
|
// public types
|
|
//
|
|
|
|
//
|
|
// public functions
|
|
//
|
|
|
|
[[nodiscard]] const char* lookupFunctionName(const void* function);
|
|
[[nodiscard]] std::string demangleCPPIdentifier(const char* identifier);
|
|
|
|
} // namespace mijin
|
|
|
|
#endif // !defined(MIJIN_DEBUG_SYMBOL_INFO_HPP_INCLUDED)
|