You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
The RAD symbol library support many debug info formats such as pdb and elf variants. It also supports multithreaded debug info parsing and symbol lookups. Compiled libraries for Windows and headers. #rb stefan.boberg [CL 15872888 by Johan Berg in ue5-main branch]
36 lines
903 B
C
36 lines
903 B
C
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
#ifndef SYMS_LINE_TABLE_INCLUDE_H
|
|
#define SYMS_LINE_TABLE_INCLUDE_H
|
|
|
|
/******************************************************************************
|
|
* File : syms_line_table.h *
|
|
* Author : Nikita Smith *
|
|
* Created: 2020/08/07 *
|
|
******************************************************************************/
|
|
|
|
#if 0
|
|
typedef struct SymsLineInfo
|
|
{
|
|
SymsAddr addr;
|
|
U32 ln;
|
|
U16 col;
|
|
U16 file;
|
|
} SymsLineInfo;
|
|
#endif
|
|
|
|
#if 0
|
|
typedef struct SymsLinesSec
|
|
{
|
|
U32 ln_min;
|
|
U32 ln_max;
|
|
U32 lines_count;
|
|
SymsAddr addr_min;
|
|
SymsAddr addr_max;
|
|
struct SymsLine *lines;
|
|
struct SymsLinesSec *next;
|
|
struct SymsSourceFile file;
|
|
} SymsLinesSec;
|
|
#endif
|
|
|
|
#endif // SYMS_LINE_TABLE_INCLUDE_H
|