dbus_common.h 591 B

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