Hi Everyone,
i have written a small and dirty idapython script to print out the argsize of a called function. sadly it doesn't work as expected. i want to find the actual arguments passed to a function call. so i thought the argsize might be useful. (other ideas?)
here is the script: it always prints zero:
ea = get_screen_ea()
called_ea = CodeRefsFrom(ea,False).pop()
calledfunc = get_func(called_ea)
print calledfunc.argsize
how can i get this information right? will it work for calls like:
call _read
a library function that is?






