xref: /aosp_15_r20/external/wpa_supplicant_8/wpa_supplicant/dbus/dbus_common.h (revision 03f9172ca588f91df233974f4258bab95191f931)
1 /*
2  * wpa_supplicant D-Bus control interface - common definitions
3  * Copyright (c) 2006, Dan Williams <[email protected]> and Red Hat, Inc.
4  * Copyright (c) 2009, Witold Sowa <[email protected]>
5  * Copyright (c) 2009, Jouni Malinen <[email protected]>
6  *
7  * This software may be distributed under the terms of the BSD license.
8  * See README for more details.
9  */
10 
11 #ifndef DBUS_COMMON_H
12 #define DBUS_COMMON_H
13 
14 struct wpas_dbus_priv;
15 struct wpa_global;
16 
17 struct wpas_dbus_priv * wpas_dbus_init(struct wpa_global *global);
18 void wpas_dbus_deinit(struct wpas_dbus_priv *priv);
19 
20 #endif /* DBUS_COMMON_H */
21