| 28 | |
| 29 | |
| 30 | BOOL SymParser::LoadModule(LPCWSTR ModulePath, OPTIONAL DWORD64 ImageBase, OPTIONAL DWORD ImageSize) { |
| 31 | ModuleBase = SymLoadModuleEx(hProcess, NULL, ModulePath, NULL, ImageBase, ImageSize, NULL, 0); |
| 32 | return ModuleBase != NULL; |
| 33 | } |
| 34 | |
| 35 | |
| 36 | std::wstring SymParser::GetSymName(ULONG Index, OPTIONAL OUT PBOOL Status) { |
nothing calls this directly
no outgoing calls
no test coverage detected