dbus_common.h revision 214501
1214501Srpaulo/*
2214501Srpaulo * wpa_supplicant D-Bus control interface - common definitions
3214501Srpaulo * Copyright (c) 2006, Dan Williams <dcbw@redhat.com> and Red Hat, Inc.
4214501Srpaulo * Copyright (c) 2009, Witold Sowa <witold.sowa@gmail.com>
5214501Srpaulo * Copyright (c) 2009, Jouni Malinen <j@w1.fi>
6214501Srpaulo *
7214501Srpaulo * This program is free software; you can redistribute it and/or modify
8214501Srpaulo * it under the terms of the GNU General Public License version 2 as
9214501Srpaulo * published by the Free Software Foundation.
10214501Srpaulo *
11214501Srpaulo * Alternatively, this software may be distributed under the terms of BSD
12214501Srpaulo * license.
13214501Srpaulo *
14214501Srpaulo * See README and COPYING for more details.
15214501Srpaulo */
16214501Srpaulo
17214501Srpaulo#ifndef DBUS_COMMON_H
18214501Srpaulo#define DBUS_COMMON_H
19214501Srpaulo
20214501Srpaulostruct wpas_dbus_priv;
21214501Srpaulostruct wpa_global;
22214501Srpaulo
23214501Srpaulostruct wpas_dbus_priv * wpas_dbus_init(struct wpa_global *global);
24214501Srpaulovoid wpas_dbus_deinit(struct wpas_dbus_priv *priv);
25214501Srpaulo
26214501Srpaulo#endif /* DBUS_COMMON_H */
27