Hi All, I just want to add a simple api into current Android framework's Interface. The API looks like as below:
status_t getDestRect(int *left,int*right,int*top,int*bottom,int *rot); in which int *left,int*right,int*top,int*bottom,int *rot works as output parameters. I checked some implement of BpInterface, they all use Parcel::writeStrongBinder(const sp<IBinder>& val) to pass down the memory pointer to Binder. Is that means all input pointers should be wrapper to a sp<IBinder>? Is it a way to simply wrapper a int *,or some basic type pointer? Best Regards Guoyin Chen --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "android-framework" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-framework?hl=en -~----------~----~----~----~------~----~------~--~---
