jack2 codebase
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
364B

  1. #ifndef BNANDROIDSHM
  2. #define BNANDROIDSHM
  3. #include <binder/Parcel.h>
  4. #include "IAndroidShm.h"
  5. namespace android {
  6. class BnAndroidShm : public BnInterface<IAndroidShm> {
  7. public:
  8. virtual status_t onTransact( uint32_t code,
  9. const Parcel& data,
  10. Parcel* reply,
  11. uint32_t flags = 0);
  12. };
  13. };
  14. #endif