xref: /aosp_15_r20/external/wpa_supplicant_8/wpa_supplicant/aidl/shared/aidl_i.h (revision 03f9172ca588f91df233974f4258bab95191f931)
1 /*
2  * WPA Supplicant - Global Aidl struct
3  * Copyright (c) 2021, Google Inc. All rights reserved.
4  *
5  * This software may be distributed under the terms of the BSD license.
6  * See README for more details.
7  */
8 
9 #ifndef AIDL_I_H
10 #define AIDL_I_H
11 
12 #ifdef _cplusplus
13 extern "C"
14 {
15 #endif  // _cplusplus
16 
17 	struct wpas_aidl_priv
18 	{
19 		int aidl_fd;
20 		struct wpa_global *global;
21 		void *aidl_manager;
22 	};
23 
24 #ifdef _cplusplus
25 }
26 #endif  // _cplusplus
27 
28 #endif  // AIDL_I_H
29