Sources: Run clang-format on everything.
This commit is contained in:
parent
fe948af095
commit
dc8479928c
386 changed files with 19560 additions and 18080 deletions
|
@ -10,25 +10,22 @@
|
|||
|
||||
#include "common/common_types.h"
|
||||
|
||||
struct TSymbol
|
||||
{
|
||||
u32 address = 0;
|
||||
struct TSymbol {
|
||||
u32 address = 0;
|
||||
std::string name;
|
||||
u32 size = 0;
|
||||
u32 type = 0;
|
||||
u32 size = 0;
|
||||
u32 type = 0;
|
||||
};
|
||||
|
||||
typedef std::map<u32, TSymbol> TSymbolsMap;
|
||||
typedef std::pair<u32, TSymbol> TSymbolsPair;
|
||||
|
||||
namespace Symbols
|
||||
{
|
||||
bool HasSymbol(u32 address);
|
||||
namespace Symbols {
|
||||
bool HasSymbol(u32 address);
|
||||
|
||||
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();
|
||||
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();
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue