binder_i.h 530 B

12345678910111213141516171819202122232425262728
  1. /*
  2. * binder interface for wpa_supplicant daemon
  3. * Copyright (c) 2004-2016, Jouni Malinen <j@w1.fi>
  4. * Copyright (c) 2004-2016, Roshan Pius <rpius@google.com>
  5. *
  6. * This software may be distributed under the terms of the BSD license.
  7. * See README for more details.
  8. */
  9. #ifndef BINDER_I_H
  10. #define BINDER_I_H
  11. #ifdef _cplusplus
  12. extern "C" {
  13. #endif // _cplusplus
  14. struct wpas_binder_priv
  15. {
  16. int binder_fd;
  17. struct wpa_global *global;
  18. void *binder_manager;
  19. };
  20. #ifdef _cplusplus
  21. }
  22. #endif /* _cplusplus */
  23. #endif /* BINDER_I_H */