From 29f8d1f21ab5341361adcc2533fcda24a7fcf490 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Tue, 29 Oct 2013 19:31:25 +0100 Subject: [PATCH] bus: add a macro to simplify reading of UUIDs --- src/systemd/sd-bus.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/systemd/sd-bus.h b/src/systemd/sd-bus.h index a98887d..aa8caee 100644 --- a/src/systemd/sd-bus.h +++ b/src/systemd/sd-bus.h @@ -255,6 +255,12 @@ int sd_bus_error_has_name(const sd_bus_error *e, const char *name); (x).bytes[8], (x).bytes[9], (x).bytes[10], (x).bytes[11], \ (x).bytes[12], (x).bytes[13], (x).bytes[14], (x).bytes[15] +#define SD_BUS_MESSAGE_READ_ID128(x) 16, \ + &(x).bytes[0], &(x).bytes[1], &(x).bytes[2], &(x).bytes[3], \ + &(x).bytes[4], &(x).bytes[5], &(x).bytes[6], &(x).bytes[7], \ + &(x).bytes[8], &(x).bytes[9], &(x).bytes[10], &(x).bytes[11], \ + &(x).bytes[12], &(x).bytes[13], &(x).bytes[14], &(x).bytes[15] + #ifdef __cplusplus } #endif -- 2.7.4