#############################################################
| 871 | |
| 872 | // ############################################################# |
| 873 | StackWalker::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 | } |
| 883 | StackWalker::StackWalker(int options, LPCSTR szSymPath, DWORD dwProcessId, HANDLE hProcess) |
| 884 | { |
| 885 | this->m_options = options; |
nothing calls this directly
no outgoing calls
no test coverage detected