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