Hello everyone,
i am trying to figure out a way to automatically get a list of functions, that have actually been written by the programmer of an program.
i tried to get the function flags of a func_t and check whether "library function is set".
sadly, for all functions, the flag is never set (i compiled a small program with 2 "real" functions and about 20 linked and compiled in library functions)
so is there an automatic way of getting the "real" functions?
here is an example:
ea = get_screen_ea()
func = get_func(ea)
funcFlags = func.flags
if funcFlags & 0x00000004 is not 0:
print "library function"







