1 /* 2 * WPA Supplicant - Mainline supplicant service 3 * Copyright (c) 2024, 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 MAINLINE_SUPPLICANT_SERVICE_H 10 #define MAINLINE_SUPPLICANT_SERVICE_H 11 12 #ifdef _cplusplus 13 extern "C" 14 { 15 #endif // _cplusplus 16 17 struct wpas_aidl_priv; 18 struct wpa_global; 19 20 struct wpas_aidl_priv *mainline_aidl_init(struct wpa_global *global); 21 void mainline_aidl_deinit(struct wpas_aidl_priv *priv); 22 23 #ifdef _cplusplus 24 } 25 #endif // _cplusplus 26 27 #endif // MAINLINE_SUPPLICANT_SERVICE_H 28