mirror of
https://github.com/Fennix-Project/Kernel.git
synced 2025-07-11 07:19:20 +00:00
Updated types
This commit is contained in:
@ -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);
|
||||
};
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user