ga-service-browser.h 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. /*
  2. * ga-service-browser.h - Header for GaServiceBrowser
  3. * Copyright (C) 2006-2007 Collabora Ltd.
  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.1 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 Public
  16. * License along with this library; if not, write to the Free Software
  17. * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  18. */
  19. #ifndef __GA_SERVICE_BROWSER_H__
  20. #define __GA_SERVICE_BROWSER_H__
  21. #include <glib-object.h>
  22. #include <avahi-client/lookup.h>
  23. #include <avahi-common/defs.h>
  24. #include "ga-client.h"
  25. #include "ga-enums.h"
  26. G_BEGIN_DECLS
  27. typedef struct _GaServiceBrowser GaServiceBrowser;
  28. typedef struct _GaServiceBrowserClass GaServiceBrowserClass;
  29. struct _GaServiceBrowserClass {
  30. GObjectClass parent_class;
  31. };
  32. struct _GaServiceBrowser {
  33. GObject parent;
  34. };
  35. GType ga_service_browser_get_type(void);
  36. /* TYPE MACROS */
  37. #define GA_TYPE_SERVICE_BROWSER \
  38. (ga_service_browser_get_type())
  39. #define GA_SERVICE_BROWSER(obj) \
  40. (G_TYPE_CHECK_INSTANCE_CAST((obj), GA_TYPE_SERVICE_BROWSER, GaServiceBrowser))
  41. #define GA_SERVICE_BROWSER_CLASS(klass) \
  42. (G_TYPE_CHECK_CLASS_CAST((klass), GA_TYPE_SERVICE_BROWSER, GaServiceBrowserClass))
  43. #define IS_GA_SERVICE_BROWSER(obj) \
  44. (G_TYPE_CHECK_INSTANCE_TYPE((obj), GA_TYPE_SERVICE_BROWSER))
  45. #define IS_GA_SERVICE_BROWSER_CLASS(klass) \
  46. (G_TYPE_CHECK_CLASS_TYPE((klass), GA_TYPE_SERVICE_BROWSER))
  47. #define GA_SERVICE_BROWSER_GET_CLASS(obj) \
  48. (G_TYPE_INSTANCE_GET_CLASS ((obj), GA_TYPE_SERVICE_BROWSER, GaServiceBrowserClass))
  49. GaServiceBrowser *ga_service_browser_new(const gchar * type);
  50. GaServiceBrowser *ga_service_browser_new_full(AvahiIfIndex interface,
  51. AvahiProtocol protocol,
  52. const gchar * type, gchar * domain,
  53. GaLookupFlags flags);
  54. gboolean
  55. ga_service_browser_attach(GaServiceBrowser * browser,
  56. GaClient * client, GError ** error);
  57. G_END_DECLS
  58. #endif /* #ifndef __GA_SERVICE_BROWSER_H__ */