mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-16 17:57:47 +00:00
symbols: Get rid of initial underscores in variable names
This commit is contained in:
parent
7b63b5f819
commit
3564f8ae6f
2 changed files with 20 additions and 20 deletions
|
@ -23,12 +23,12 @@ typedef std::pair<u32, TSymbol> TSymbolsPair;
|
|||
|
||||
namespace Symbols
|
||||
{
|
||||
bool HasSymbol(u32 _address);
|
||||
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 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