diff options
author | Kay Sievers <kay@vrfy.org> | 2013-11-02 00:10:12 +0100 |
---|---|---|
committer | Kay Sievers <kay@vrfy.org> | 2013-11-02 01:48:22 +0100 |
commit | ffc06c3513d9a0693c7f810d03b20705127ba55a (patch) | |
tree | f0be63421f887d4510baba8e92482f96d7018861 /src/libsystemd-bus/bus-util.h | |
parent | 98e6c5e62ffcec33bd5255ebaafeafdc5a3f1ada (diff) |
bus: use internal helper to read org.freedesktop.DBus.Properties::GetAll variables
Diffstat (limited to 'src/libsystemd-bus/bus-util.h')
-rw-r--r-- | src/libsystemd-bus/bus-util.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/libsystemd-bus/bus-util.h b/src/libsystemd-bus/bus-util.h index e70006e6eb..ddb926498f 100644 --- a/src/libsystemd-bus/bus-util.h +++ b/src/libsystemd-bus/bus-util.h @@ -35,6 +35,17 @@ typedef enum BusTransport { _BUS_TRANSPORT_INVALID = -1 } BusTransport; +struct bus_properties_map { + const char *type; + const char *name; + void *ptr; +}; + +int bus_map_all_properties(sd_bus *bus, + const char *destination, + const char *path, + const struct bus_properties_map *map); + int bus_async_unregister_and_quit(sd_event *e, sd_bus *bus, const char *name); int bus_event_loop_with_idle(sd_event *e, sd_bus *bus, const char *name, usec_t timeout); |