1
0
Fork 0
x64dbg/src/dbg/stackinfo.h

24 lines
425 B
C

#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 stackgetcallstack(duint csp, CALLSTACK* callstack);
#endif //_STACKINFO_H