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

Method GetSymBitPosition

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

Source from the content-addressed store, hash-verified

156}
157
158ULONG SymParser::GetSymBitPosition(ULONG Index, OPTIONAL OUT PBOOL Status) {
159 ULONG BitPosition = 0;
160 BOOL SymStatus = SymGetTypeInfo(hProcess, ModuleBase, Index, TI_GET_BITPOSITION, &BitPosition);
161 if (Status) *Status = SymStatus;
162 return BitPosition;
163}
164
165ULONG SymParser::GetSymTypeId(ULONG Index, OPTIONAL OUT PBOOL Status) {
166 ULONG TypeId = 0;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected