MCPcopy Create free account
hub / github.com/JochenKalmbach/StackWalker / StackWalker

Method StackWalker

Main/StackWalker/StackWalker.cpp:873–882  ·  view source on GitHub ↗

#############################################################

Source from the content-addressed store, hash-verified

871
872// #############################################################
873StackWalker::StackWalker(DWORD dwProcessId, HANDLE hProcess)
874{
875 this->m_options = OptionsAll;
876 this->m_modulesLoaded = FALSE;
877 this->m_hProcess = hProcess;
878 this->m_sw = new StackWalkerInternal(this, this->m_hProcess);
879 this->m_dwProcessId = dwProcessId;
880 this->m_szSymPath = NULL;
881 this->m_MaxRecursionCount = 1000;
882}
883StackWalker::StackWalker(int options, LPCSTR szSymPath, DWORD dwProcessId, HANDLE hProcess)
884{
885 this->m_options = options;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected