1 1.1 christos /* 2 1.1 christos * wpa_supplicant D-Bus control interface - common definitions 3 1.1 christos * Copyright (c) 2006, Dan Williams <dcbw (at) redhat.com> and Red Hat, Inc. 4 1.1 christos * Copyright (c) 2009, Witold Sowa <witold.sowa (at) gmail.com> 5 1.1 christos * Copyright (c) 2009, Jouni Malinen <j (at) w1.fi> 6 1.1 christos * 7 1.1.1.2 christos * This software may be distributed under the terms of the BSD license. 8 1.1.1.2 christos * See README for more details. 9 1.1 christos */ 10 1.1 christos 11 1.1 christos #ifndef DBUS_COMMON_H 12 1.1 christos #define DBUS_COMMON_H 13 1.1 christos 14 1.1 christos struct wpas_dbus_priv; 15 1.1 christos struct wpa_global; 16 1.1 christos 17 1.1 christos struct wpas_dbus_priv * wpas_dbus_init(struct wpa_global *global); 18 1.1 christos void wpas_dbus_deinit(struct wpas_dbus_priv *priv); 19 1.1 christos 20 1.1 christos #endif /* DBUS_COMMON_H */ 21