00001 /* 00002 * wpa_supplicant D-Bus control interface - common definitions 00003 * Copyright (c) 2006, Dan Williams <dcbw@redhat.com> and Red Hat, Inc. 00004 * Copyright (c) 2009, Witold Sowa <witold.sowa@gmail.com> 00005 * Copyright (c) 2009, Jouni Malinen <j@w1.fi> 00006 * 00007 * This program is free software; you can redistribute it and/or modify 00008 * it under the terms of the GNU General Public License version 2 as 00009 * published by the Free Software Foundation. 00010 * 00011 * Alternatively, this software may be distributed under the terms of BSD 00012 * license. 00013 * 00014 * See README and COPYING for more details. 00015 */ 00016 00017 #ifndef DBUS_COMMON_H 00018 #define DBUS_COMMON_H 00019 00020 struct wpas_dbus_priv; 00021 struct wpa_global; 00022 00023 struct wpas_dbus_priv * wpas_dbus_init(struct wpa_global *global); 00024 void wpas_dbus_deinit(struct wpas_dbus_priv *priv); 00025 00026 #endif /* DBUS_COMMON_H */