summaryrefslogtreecommitdiffstats
path: root/binding/gdbus/obex_session1_interface.h
diff options
context:
space:
mode:
Diffstat (limited to 'binding/gdbus/obex_session1_interface.h')
-rw-r--r--binding/gdbus/obex_session1_interface.h204
1 files changed, 204 insertions, 0 deletions
diff --git a/binding/gdbus/obex_session1_interface.h b/binding/gdbus/obex_session1_interface.h
new file mode 100644
index 0000000..da8b957
--- /dev/null
+++ b/binding/gdbus/obex_session1_interface.h
@@ -0,0 +1,204 @@
+/*
+ * Generated by gdbus-codegen 2.50.3. DO NOT EDIT.
+ *
+ * The license of this code is the same as for the source it was derived from.
+ */
+
+#ifndef __OBEX_SESSION1_INTERFACE_H__
+#define __OBEX_SESSION1_INTERFACE_H__
+
+#include <gio/gio.h>
+
+G_BEGIN_DECLS
+
+
+/* ------------------------------------------------------------------------ */
+/* Declarations for org.bluez.obex.Session1 */
+
+#define TYPE_ORG_BLUEZ_OBEX_SESSION1 (org_bluez_obex_session1_get_type ())
+#define ORG_BLUEZ_OBEX_SESSION1(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), TYPE_ORG_BLUEZ_OBEX_SESSION1, OrgBluezObexSession1))
+#define IS_ORG_BLUEZ_OBEX_SESSION1(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), TYPE_ORG_BLUEZ_OBEX_SESSION1))
+#define ORG_BLUEZ_OBEX_SESSION1_GET_IFACE(o) (G_TYPE_INSTANCE_GET_INTERFACE ((o), TYPE_ORG_BLUEZ_OBEX_SESSION1, OrgBluezObexSession1Iface))
+
+struct _OrgBluezObexSession1;
+typedef struct _OrgBluezObexSession1 OrgBluezObexSession1;
+typedef struct _OrgBluezObexSession1Iface OrgBluezObexSession1Iface;
+
+struct _OrgBluezObexSession1Iface
+{
+ GTypeInterface parent_iface;
+
+
+ gboolean (*handle_get_capabilities) (
+ OrgBluezObexSession1 *object,
+ GDBusMethodInvocation *invocation);
+
+ guchar (*get_channel) (OrgBluezObexSession1 *object);
+
+ const gchar * (*get_destination) (OrgBluezObexSession1 *object);
+
+ const gchar * (*get_source) (OrgBluezObexSession1 *object);
+
+ const gchar * (*get_target) (OrgBluezObexSession1 *object);
+
+};
+
+GType org_bluez_obex_session1_get_type (void) G_GNUC_CONST;
+
+GDBusInterfaceInfo *org_bluez_obex_session1_interface_info (void);
+guint org_bluez_obex_session1_override_properties (GObjectClass *klass, guint property_id_begin);
+
+
+/* D-Bus method call completion functions: */
+void org_bluez_obex_session1_complete_get_capabilities (
+ OrgBluezObexSession1 *object,
+ GDBusMethodInvocation *invocation,
+ const gchar *capabilities);
+
+
+
+/* D-Bus method calls: */
+void org_bluez_obex_session1_call_get_capabilities (
+ OrgBluezObexSession1 *proxy,
+ GCancellable *cancellable,
+ GAsyncReadyCallback callback,
+ gpointer user_data);
+
+gboolean org_bluez_obex_session1_call_get_capabilities_finish (
+ OrgBluezObexSession1 *proxy,
+ gchar **out_capabilities,
+ GAsyncResult *res,
+ GError **error);
+
+gboolean org_bluez_obex_session1_call_get_capabilities_sync (
+ OrgBluezObexSession1 *proxy,
+ gchar **out_capabilities,
+ GCancellable *cancellable,
+ GError **error);
+
+
+
+/* D-Bus property accessors: */
+const gchar *org_bluez_obex_session1_get_source (OrgBluezObexSession1 *object);
+gchar *org_bluez_obex_session1_dup_source (OrgBluezObexSession1 *object);
+void org_bluez_obex_session1_set_source (OrgBluezObexSession1 *object, const gchar *value);
+
+const gchar *org_bluez_obex_session1_get_destination (OrgBluezObexSession1 *object);
+gchar *org_bluez_obex_session1_dup_destination (OrgBluezObexSession1 *object);
+void org_bluez_obex_session1_set_destination (OrgBluezObexSession1 *object, const gchar *value);
+
+guchar org_bluez_obex_session1_get_channel (OrgBluezObexSession1 *object);
+void org_bluez_obex_session1_set_channel (OrgBluezObexSession1 *object, guchar value);
+
+const gchar *org_bluez_obex_session1_get_target (OrgBluezObexSession1 *object);
+gchar *org_bluez_obex_session1_dup_target (OrgBluezObexSession1 *object);
+void org_bluez_obex_session1_set_target (OrgBluezObexSession1 *object, const gchar *value);
+
+
+/* ---- */
+
+#define TYPE_ORG_BLUEZ_OBEX_SESSION1_PROXY (org_bluez_obex_session1_proxy_get_type ())
+#define ORG_BLUEZ_OBEX_SESSION1_PROXY(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), TYPE_ORG_BLUEZ_OBEX_SESSION1_PROXY, OrgBluezObexSession1Proxy))
+#define ORG_BLUEZ_OBEX_SESSION1_PROXY_CLASS(k) (G_TYPE_CHECK_CLASS_CAST ((k), TYPE_ORG_BLUEZ_OBEX_SESSION1_PROXY, OrgBluezObexSession1ProxyClass))
+#define ORG_BLUEZ_OBEX_SESSION1_PROXY_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), TYPE_ORG_BLUEZ_OBEX_SESSION1_PROXY, OrgBluezObexSession1ProxyClass))
+#define IS_ORG_BLUEZ_OBEX_SESSION1_PROXY(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), TYPE_ORG_BLUEZ_OBEX_SESSION1_PROXY))
+#define IS_ORG_BLUEZ_OBEX_SESSION1_PROXY_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), TYPE_ORG_BLUEZ_OBEX_SESSION1_PROXY))
+
+typedef struct _OrgBluezObexSession1Proxy OrgBluezObexSession1Proxy;
+typedef struct _OrgBluezObexSession1ProxyClass OrgBluezObexSession1ProxyClass;
+typedef struct _OrgBluezObexSession1ProxyPrivate OrgBluezObexSession1ProxyPrivate;
+
+struct _OrgBluezObexSession1Proxy
+{
+ /*< private >*/
+ GDBusProxy parent_instance;
+ OrgBluezObexSession1ProxyPrivate *priv;
+};
+
+struct _OrgBluezObexSession1ProxyClass
+{
+ GDBusProxyClass parent_class;
+};
+
+GType org_bluez_obex_session1_proxy_get_type (void) G_GNUC_CONST;
+
+#if GLIB_CHECK_VERSION(2, 44, 0)
+G_DEFINE_AUTOPTR_CLEANUP_FUNC (OrgBluezObexSession1Proxy, g_object_unref)
+#endif
+
+void org_bluez_obex_session1_proxy_new (
+ GDBusConnection *connection,
+ GDBusProxyFlags flags,
+ const gchar *name,
+ const gchar *object_path,
+ GCancellable *cancellable,
+ GAsyncReadyCallback callback,
+ gpointer user_data);
+OrgBluezObexSession1 *org_bluez_obex_session1_proxy_new_finish (
+ GAsyncResult *res,
+ GError **error);
+OrgBluezObexSession1 *org_bluez_obex_session1_proxy_new_sync (
+ GDBusConnection *connection,
+ GDBusProxyFlags flags,
+ const gchar *name,
+ const gchar *object_path,
+ GCancellable *cancellable,
+ GError **error);
+
+void org_bluez_obex_session1_proxy_new_for_bus (
+ GBusType bus_type,
+ GDBusProxyFlags flags,
+ const gchar *name,
+ const gchar *object_path,
+ GCancellable *cancellable,
+ GAsyncReadyCallback callback,
+ gpointer user_data);
+OrgBluezObexSession1 *org_bluez_obex_session1_proxy_new_for_bus_finish (
+ GAsyncResult *res,
+ GError **error);
+OrgBluezObexSession1 *org_bluez_obex_session1_proxy_new_for_bus_sync (
+ GBusType bus_type,
+ GDBusProxyFlags flags,
+ const gchar *name,
+ const gchar *object_path,
+ GCancellable *cancellable,
+ GError **error);
+
+
+/* ---- */
+
+#define TYPE_ORG_BLUEZ_OBEX_SESSION1_SKELETON (org_bluez_obex_session1_skeleton_get_type ())
+#define ORG_BLUEZ_OBEX_SESSION1_SKELETON(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), TYPE_ORG_BLUEZ_OBEX_SESSION1_SKELETON, OrgBluezObexSession1Skeleton))
+#define ORG_BLUEZ_OBEX_SESSION1_SKELETON_CLASS(k) (G_TYPE_CHECK_CLASS_CAST ((k), TYPE_ORG_BLUEZ_OBEX_SESSION1_SKELETON, OrgBluezObexSession1SkeletonClass))
+#define ORG_BLUEZ_OBEX_SESSION1_SKELETON_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), TYPE_ORG_BLUEZ_OBEX_SESSION1_SKELETON, OrgBluezObexSession1SkeletonClass))
+#define IS_ORG_BLUEZ_OBEX_SESSION1_SKELETON(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), TYPE_ORG_BLUEZ_OBEX_SESSION1_SKELETON))
+#define IS_ORG_BLUEZ_OBEX_SESSION1_SKELETON_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), TYPE_ORG_BLUEZ_OBEX_SESSION1_SKELETON))
+
+typedef struct _OrgBluezObexSession1Skeleton OrgBluezObexSession1Skeleton;
+typedef struct _OrgBluezObexSession1SkeletonClass OrgBluezObexSession1SkeletonClass;
+typedef struct _OrgBluezObexSession1SkeletonPrivate OrgBluezObexSession1SkeletonPrivate;
+
+struct _OrgBluezObexSession1Skeleton
+{
+ /*< private >*/
+ GDBusInterfaceSkeleton parent_instance;
+ OrgBluezObexSession1SkeletonPrivate *priv;
+};
+
+struct _OrgBluezObexSession1SkeletonClass
+{
+ GDBusInterfaceSkeletonClass parent_class;
+};
+
+GType org_bluez_obex_session1_skeleton_get_type (void) G_GNUC_CONST;
+
+#if GLIB_CHECK_VERSION(2, 44, 0)
+G_DEFINE_AUTOPTR_CLEANUP_FUNC (OrgBluezObexSession1Skeleton, g_object_unref)
+#endif
+
+OrgBluezObexSession1 *org_bluez_obex_session1_skeleton_new (void);
+
+
+G_END_DECLS
+
+#endif /* __OBEX_SESSION1_INTERFACE_H__ */
459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581