diff --git a/gdbus/gdbus.h b/gdbus/gdbus.h
index a96c97f..8251947 100644
--- a/gdbus/gdbus.h
+++ b/gdbus/gdbus.h
void g_dbus_emit_property_changed(DBusConnection *connection,
const char *path, const char *interface,
const char *name);
+gboolean g_dbus_get_properties(DBusConnection *connection, const char *path,
+ const char *interface, DBusMessageIter *iter);
#ifdef __cplusplus
}
diff --git a/gdbus/object.c b/gdbus/object.c
index 7acb563..aa38c07 100644
--- a/gdbus/object.c
+++ b/gdbus/object.c
return;
}
}
+
+gboolean g_dbus_get_properties(DBusConnection *connection, const char *path,
+ const char *interface, DBusMessageIter *iter)
+{
+ struct generic_data *data;
+ struct interface_data *iface;
+
+ if (!dbus_connection_get_object_path_data(connection, path,
+ (void **) &data) || data == NULL)
+ return FALSE;
+
+ iface = find_interface(data->interfaces, interface);
+ if (iface == NULL)
+ return FALSE;
+
+ append_properties(iface, iter);
+
+ return TRUE;
+}