/
githubmirror
/
x64dbg
Обзор
Документация
Войти
/
githubmirror
/
x64dbg
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
development
src/dbg/stackinfo.h
28 строк
652 B
morsisko
GUI: Added new function GetCallStackByThread
23 окт 2020, 17:54
23 окт 2020, 17:54
9311752
Код
Авторство
О чём код?
#ifndef _STACKINFO_H #define _STACKINFO_H #include "_global.h" struct CALLSTACKENTRY { duint addr; duint from; duint to; char comment[MAX_COMMENT_SIZE]; }; struct CALLSTACK { int total; CALLSTACKENTRY* entries; }; void stackupdateseh(); bool stackcommentget(duint addr, STACK_COMMENT* comment); void stackupdatecallstack(duint csp); void stackgetcallstack(duint csp, CALLSTACK* callstack); void stackgetcallstack(duint csp, std::vector<CALLSTACKENTRY> & callstack, bool cache); void stackgetcallstackbythread(HANDLE thread, CALLSTACK* callstack); void stackupdatesettings(); #endif //_STACKINFO_H