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 01dc6bd commit 87f7f06Copy full SHA for 87f7f06
src/parser/file/binaryFile.h
@@ -95,6 +95,13 @@ static inline void binaryFile_create(struct binaryFile* self) {
95
self->inMemory = false;
96
}
97
98
+/**
99
+ * Retrieves the function information available in the given binary file object.
100
+ *
101
+ * @param self the binary file object
102
+ * @param functionName the name of the function (as it was linked) to look up
103
+ * @param info the function info structure to be filled
104
+ */
105
bool binaryFile_getFunctionInfo(struct binaryFile* self, const char* functionName, struct functionInfo* info);
106
107
/**
0 commit comments