You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

113 lines
4.7 KiB

  1. /* GDBus - GLib D-Bus Library
  2. *
  3. * Copyright (C) 2008-2010 Red Hat, Inc.
  4. *
  5. * This library is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU Lesser General Public
  7. * License as published by the Free Software Foundation; either
  8. * version 2 of the License, or (at your option) any later version.
  9. *
  10. * This library is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  13. * Lesser General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU Lesser General
  16. * Public License along with this library; if not, write to the
  17. * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
  18. * Boston, MA 02111-1307, USA.
  19. *
  20. * Author: David Zeuthen <davidz@redhat.com>
  21. */
  22. #if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION)
  23. #error "Only <gio/gio.h> can be included directly."
  24. #endif
  25. #ifndef __G_DBUS_NAME_OWNING_H__
  26. #define __G_DBUS_NAME_OWNING_H__
  27. #include <gio/giotypes.h>
  28. G_BEGIN_DECLS
  29. /**
  30. * GBusAcquiredCallback:
  31. * @connection: The #GDBusConnection to a message bus.
  32. * @name: The name that is requested to be owned.
  33. * @user_data: User data passed to g_bus_own_name().
  34. *
  35. * Invoked when a connection to a message bus has been obtained.
  36. *
  37. * Since: 2.26
  38. */
  39. typedef void (*GBusAcquiredCallback) (GDBusConnection *connection,
  40. const gchar *name,
  41. gpointer user_data);
  42. /**
  43. * GBusNameAcquiredCallback:
  44. * @connection: The #GDBusConnection on which to acquired the name.
  45. * @name: The name being owned.
  46. * @user_data: User data passed to g_bus_own_name() or g_bus_own_name_on_connection().
  47. *
  48. * Invoked when the name is acquired.
  49. *
  50. * Since: 2.26
  51. */
  52. typedef void (*GBusNameAcquiredCallback) (GDBusConnection *connection,
  53. const gchar *name,
  54. gpointer user_data);
  55. /**
  56. * GBusNameLostCallback:
  57. * @connection: The #GDBusConnection on which to acquire the name or %NULL if
  58. * the connection was disconnected.
  59. * @name: The name being owned.
  60. * @user_data: User data passed to g_bus_own_name() or g_bus_own_name_on_connection().
  61. *
  62. * Invoked when the name is lost or @connection has been closed.
  63. *
  64. * Since: 2.26
  65. */
  66. typedef void (*GBusNameLostCallback) (GDBusConnection *connection,
  67. const gchar *name,
  68. gpointer user_data);
  69. guint g_bus_own_name (GBusType bus_type,
  70. const gchar *name,
  71. GBusNameOwnerFlags flags,
  72. GBusAcquiredCallback bus_acquired_handler,
  73. GBusNameAcquiredCallback name_acquired_handler,
  74. GBusNameLostCallback name_lost_handler,
  75. gpointer user_data,
  76. GDestroyNotify user_data_free_func);
  77. guint g_bus_own_name_on_connection (GDBusConnection *connection,
  78. const gchar *name,
  79. GBusNameOwnerFlags flags,
  80. GBusNameAcquiredCallback name_acquired_handler,
  81. GBusNameLostCallback name_lost_handler,
  82. gpointer user_data,
  83. GDestroyNotify user_data_free_func);
  84. guint g_bus_own_name_with_closures (GBusType bus_type,
  85. const gchar *name,
  86. GBusNameOwnerFlags flags,
  87. GClosure *bus_acquired_closure,
  88. GClosure *name_acquired_closure,
  89. GClosure *name_lost_closure);
  90. guint g_bus_own_name_on_connection_with_closures (
  91. GDBusConnection *connection,
  92. const gchar *name,
  93. GBusNameOwnerFlags flags,
  94. GClosure *name_acquired_closure,
  95. GClosure *name_lost_closure);
  96. void g_bus_unown_name (guint owner_id);
  97. G_END_DECLS
  98. #endif /* __G_DBUS_NAME_OWNING_H__ */