Updated types

This commit is contained in:
Alex
2022-12-21 00:43:51 +02:00
parent 684b76a1ca
commit a677f3c159
62 changed files with 471 additions and 448 deletions

View File

@ -8,17 +8,17 @@ namespace SymbolResolver
private:
struct SymbolTable
{
uint64_t Address;
uintptr_t Address;
char *FunctionName;
};
SymbolTable SymTable[0x10000];
uint64_t TotalEntries = 0;
uintptr_t TotalEntries = 0;
public:
Symbols(uint64_t ImageAddress);
Symbols(uintptr_t ImageAddress);
~Symbols();
const char *GetSymbolFromAddress(uint64_t Address);
const char *GetSymbolFromAddress(uintptr_t Address);
};
}