views:

46

answers:

2

I have a number of private frameworks I want to use, however I cannot find any headers for them. Is there a de-facto way of getting arguments from C function calls using IDA Pro? (Not ObjC messages).

Edit: Oops, I meant C not C++.

+1  A: 

Access r0-r3 and the stack pointer?

tc.
The best I can work out from that is the number of arguments ...
Nick Brooks
+1  A: 

In C, there's no way, other than just looking at the assembly code and extracting the parameters manually.

Matias Valdenegro