| 1261 | } |
| 1262 | |
| 1263 | uint64_t DbgEngAdapter::GetStackPointer() |
| 1264 | { |
| 1265 | if (!m_debugRegisters) |
| 1266 | return 0; |
| 1267 | |
| 1268 | uint64_t stackPointer {}; |
| 1269 | m_debugRegisters->GetStackOffset(&stackPointer); |
| 1270 | return stackPointer; |
| 1271 | } |
| 1272 | |
| 1273 | unsigned long DbgEngEventCallbacks::AddRef() |
| 1274 | { |
nothing calls this directly
no outgoing calls
no test coverage detected