I can't figure out the prototype for this simple function:
In stack:
Function call:
That's what I got so far, and it causes an error.
//No idea
void CameraDeviceCreate(int one,int two,int* three);
There are three registers used (R0,R1,R2) so there should be three arguments. Third one refers to a stack variable (I still don't get how that works). #0x28 (var_28) is only mentioned in the ADD call, not sure what it could be. Where did I make a mistake?
If I missed some info out tell me and I'll add it. This is from Camera.framework by the way.