get_frame_args_size

Get size of arguments in function frame which are purged upon return
     ea - any address belonging to the function
returns: Size of function arguments in bytes.
         If the function doesn't have a frame, return 0
         If the function doesn't exist, return -1

#define get_frame_args_size(ea)  get_func_attr(ea, FUNCATTR_ARGSIZE)

Last updated