#############################################################
| 736 | |
| 737 | // ############################################################# |
| 738 | StackWalker::StackWalker(DWORD dwProcessId, HANDLE hProcess) |
| 739 | { |
| 740 | this->m_options = OptionsAll; |
| 741 | this->m_modulesLoaded = FALSE; |
| 742 | this->m_hProcess = hProcess; |
| 743 | this->m_sw = new StackWalkerInternal(this, this->m_hProcess); |
| 744 | this->m_dwProcessId = dwProcessId; |
| 745 | this->m_szSymPath = NULL; |
| 746 | } |
| 747 | StackWalker::StackWalker(int fDescriptor, int options, LPCSTR szSymPath, DWORD dwProcessId, HANDLE hProcess) |
| 748 | { |
| 749 | this->m_fDescriptor = fDescriptor; |
nothing calls this directly
no outgoing calls
no test coverage detected