binder_i.h 530 B

123456789101112131415161718192021222324252627
  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. int binder_fd;
  16. struct wpa_global *global;
  17. void *binder_manager;
  18. };
  19. #ifdef _cplusplus
  20. }
  21. #endif /* _cplusplus */
  22. #endif /* BINDER_I_H */