citra/src/common/symbols.h

31 lines
653 B
C
Raw Normal View History

2014-04-13 00:57:58 +02:00
// Copyright 2014 Citra Emulator Project
2014-12-17 06:38:14 +01:00
// Licensed under GPLv2 or any later version
2014-04-13 00:57:58 +02:00
// Refer to the license.txt file included.
#pragma once
#include <map>
2015-05-06 09:06:12 +02:00
#include <string>
#include <utility>
#include "common/common_types.h"
2014-04-13 00:57:58 +02:00
struct TSymbol {
u32 address = 0;
2014-04-13 00:57:58 +02:00
std::string name;
u32 size = 0;
u32 type = 0;
2014-04-13 00:57:58 +02:00
};
typedef std::map<u32, TSymbol> TSymbolsMap;
typedef std::pair<u32, TSymbol> TSymbolsPair;
namespace Symbols {
bool HasSymbol(u32 address);
2014-04-13 00:57:58 +02:00
void Add(u32 address, const std::string& name, u32 size, u32 type);
TSymbol GetSymbol(u32 address);
const std::string GetName(u32 address);
void Remove(u32 address);
void Clear();
2014-11-18 14:27:16 +01:00
}