diff options
author | Lennart Poettering <lennart@poettering.net> | 2013-11-22 01:14:57 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2013-11-22 01:42:15 +0100 |
commit | f00c31213a2e521680c2381ef231f05e30c874a7 (patch) | |
tree | a0eb712c597e646c5149441bc301942f9d5fd386 /src/machine/machine.h | |
parent | 969987ea93a7fdcd2c87b551eb0adf0bd9338b32 (diff) |
bus: also add error parameter to object find and enumerator callbacks
Just in order to bring things inline with the method and property
callbacks.
Diffstat (limited to 'src/machine/machine.h')
-rw-r--r-- | src/machine/machine.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/machine/machine.h b/src/machine/machine.h index 99ee25888e..62e4b2b340 100644 --- a/src/machine/machine.h +++ b/src/machine/machine.h @@ -93,7 +93,8 @@ MachineState machine_get_state(Machine *u); extern const sd_bus_vtable machine_vtable[]; char *machine_bus_path(Machine *s); -int machine_object_find(sd_bus *bus, const char *path, const char *interface, void **found, void *userdata); +int machine_object_find(sd_bus *bus, const char *path, const char *interface, void *userdata, void **found, sd_bus_error *error); +int machine_node_enumerator(sd_bus *bus, const char *path, void *userdata, char ***nodes, sd_bus_error *error); int machine_send_signal(Machine *m, bool new_machine); int machine_send_create_reply(Machine *m, sd_bus_error *error); |