gtestdbus.h 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. /* GIO testing utilities
  2. *
  3. * Copyright (C) 2008-2010 Red Hat, Inc.
  4. * Copyright (C) 2012 Collabora Ltd. <http://www.collabora.co.uk/>
  5. *
  6. * This library is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2 of the License, or (at your option) any later version.
  10. *
  11. * This library is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General
  17. * Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
  18. *
  19. * Authors: David Zeuthen <[email protected]>
  20. * Xavier Claessens <[email protected]>
  21. */
  22. #ifndef __G_TEST_DBUS_H__
  23. #define __G_TEST_DBUS_H__
  24. #if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION)
  25. #error "Only <gio/gio.h> can be included directly."
  26. #endif
  27. #include <gio/giotypes.h>
  28. G_BEGIN_DECLS
  29. #define G_TYPE_TEST_DBUS \
  30. (g_test_dbus_get_type ())
  31. #define G_TEST_DBUS(obj) \
  32. (G_TYPE_CHECK_INSTANCE_CAST ((obj), G_TYPE_TEST_DBUS, \
  33. GTestDBus))
  34. #define G_IS_TEST_DBUS(obj) \
  35. (G_TYPE_CHECK_INSTANCE_TYPE ((obj), G_TYPE_TEST_DBUS))
  36. GLIB_AVAILABLE_IN_2_34
  37. GType g_test_dbus_get_type (void) G_GNUC_CONST;
  38. GLIB_AVAILABLE_IN_2_34
  39. GTestDBus * g_test_dbus_new (GTestDBusFlags flags);
  40. GLIB_AVAILABLE_IN_2_34
  41. GTestDBusFlags g_test_dbus_get_flags (GTestDBus *self);
  42. GLIB_AVAILABLE_IN_2_34
  43. const gchar * g_test_dbus_get_bus_address (GTestDBus *self);
  44. GLIB_AVAILABLE_IN_2_34
  45. void g_test_dbus_add_service_dir (GTestDBus *self,
  46. const gchar *path);
  47. GLIB_AVAILABLE_IN_2_34
  48. void g_test_dbus_up (GTestDBus *self);
  49. GLIB_AVAILABLE_IN_2_34
  50. void g_test_dbus_stop (GTestDBus *self);
  51. GLIB_AVAILABLE_IN_2_34
  52. void g_test_dbus_down (GTestDBus *self);
  53. GLIB_AVAILABLE_IN_2_34
  54. void g_test_dbus_unset (void);
  55. G_END_DECLS
  56. #endif /* __G_TEST_DBUS_H__ */