MCPcopy Create free account
hub / github.com/HoShiMin/Kernel-Bridge / GetSymSize

Method GetSymSize

User-Bridge/API/SymParser.cpp:137–142  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

135}
136
137UINT64 SymParser::GetSymSize(ULONG Index, OPTIONAL OUT PBOOL Status) {
138 UINT64 Size = 0;
139 BOOL SymStatus = SymGetTypeInfo(hProcess, ModuleBase, Index, TI_GET_LENGTH, &Size);
140 if (Status) *Status = SymStatus;
141 return Size;
142}
143
144ULONG SymParser::GetSymOffset(ULONG Index, OPTIONAL OUT PBOOL Status) {
145 ULONG Offset = 0;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected