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

Method SymParser

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

Source from the content-addressed store, hash-verified

13#pragma comment(lib, "dbghelp.lib")
14
15SymParser::SymParser(OPTIONAL LPCWSTR SymbolsPath)
16 : Initialized(FALSE), hProcess(GetCurrentProcess()), ModuleBase(NULL)
17{
18 Initialized = SymInitialize(
19 hProcess,
20 SymbolsPath ? SymbolsPath : DefaultSymbolsPath,
21 FALSE
22 );
23}
24
25SymParser::~SymParser() {
26 if (Initialized) SymCleanup(hProcess);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected