mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-07-16 03:38:30 +12:00
23 lines
No EOL
469 B
C++
23 lines
No EOL
469 B
C++
#pragma once
|
|
#include <map>
|
|
|
|
enum RplDebugSymbolType : uint8
|
|
{
|
|
RplDebugSymbolComment = 0,
|
|
};
|
|
|
|
struct rplDebugSymbolBase
|
|
{
|
|
RplDebugSymbolType type;
|
|
rplDebugSymbolBase* next;
|
|
};
|
|
|
|
struct rplDebugSymbolComment : rplDebugSymbolBase
|
|
{
|
|
std::wstring comment;
|
|
};
|
|
|
|
|
|
void rplDebugSymbol_createComment(MPTR address, const wchar_t* comment);
|
|
rplDebugSymbolBase* rplDebugSymbol_getForAddress(MPTR address);
|
|
const std::map<MPTR, rplDebugSymbolBase*>& rplDebugSymbol_getSymbols(); |