1 /*
2  * hidl 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 
10 #ifndef HIDL_I_H
11 #define HIDL_I_H
12 
13 #ifdef _cplusplus
14 extern "C"
15 {
16 #endif  // _cplusplus
17 
18 	struct wpas_hidl_priv
19 	{
20 		int hidl_fd;
21 		struct wpa_global *global;
22 		void *hidl_manager;
23 	};
24 
25 #ifdef _cplusplus
26 }
27 #endif  // _cplusplus
28 
29 #endif  // HIDL_I_H
30