We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e9c9e15 commit e6969cbCopy full SHA for e6969cb
src/parser/file/binaryFile.h
@@ -25,6 +25,7 @@
25
#include <stdbool.h>
26
27
#include <callstack_frame.h>
28
+#include <functionInfo/functionInfo.h>
29
30
#include "dwarf/dwarf_lineInfo.h"
31
@@ -69,10 +70,11 @@ struct binaryFile {
69
70
* Returns whether the address could be translated.
71
*/
72
bool (*addr2String)(struct binaryFile*, void*, struct callstack_frame*);
73
+ bool (*getFunctionInfo)(struct binaryFile*, const char*, struct functionInfo*);
74
/** The appropriate deinitializing method. */
- void (*destroy) (struct binaryFile *);
75
+ void (*destroy)(struct binaryFile*);
76
/** The appropriate deleting method. */
- void (*deleter) (struct binaryFile *);
77
+ void (*deleter)(struct binaryFile*);
78
};
79
80
/**
0 commit comments