dbus_common.h revision 214501
1193323Sed/*
2193323Sed * wpa_supplicant D-Bus control interface - common definitions
3193323Sed * Copyright (c) 2006, Dan Williams <dcbw@redhat.com> and Red Hat, Inc.
4193323Sed * Copyright (c) 2009, Witold Sowa <witold.sowa@gmail.com>
5193323Sed * Copyright (c) 2009, Jouni Malinen <j@w1.fi>
6193323Sed *
7193323Sed * This program is free software; you can redistribute it and/or modify
8193323Sed * it under the terms of the GNU General Public License version 2 as
9193323Sed * published by the Free Software Foundation.
10193323Sed *
11193323Sed * Alternatively, this software may be distributed under the terms of BSD
12193323Sed * license.
13193323Sed *
14193323Sed * See README and COPYING for more details.
15193323Sed */
16239462Sdim
17239462Sdim#ifndef DBUS_COMMON_H
18193323Sed#define DBUS_COMMON_H
19218893Sdim
20249423Sdimstruct wpas_dbus_priv;
21249423Sdimstruct wpa_global;
22249423Sdim
23249423Sdimstruct wpas_dbus_priv * wpas_dbus_init(struct wpa_global *global);
24249423Sdimvoid wpas_dbus_deinit(struct wpas_dbus_priv *priv);
25249423Sdim
26249423Sdim#endif /* DBUS_COMMON_H */
27249423Sdim