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