diff options
Diffstat (limited to 'src/libsystemd-bus')
-rw-r--r-- | src/libsystemd-bus/sd-bus-protocol.h | 8 | ||||
-rw-r--r-- | src/libsystemd-bus/sd-bus.h | 10 |
2 files changed, 17 insertions, 1 deletions
diff --git a/src/libsystemd-bus/sd-bus-protocol.h b/src/libsystemd-bus/sd-bus-protocol.h index ac4d0b1dc5..7922f6b702 100644 --- a/src/libsystemd-bus/sd-bus-protocol.h +++ b/src/libsystemd-bus/sd-bus-protocol.h @@ -24,6 +24,10 @@ #include <endian.h> +#ifdef __cplusplus +extern "C" { +#endif + /* Types of message */ enum { @@ -142,4 +146,8 @@ enum { " </method>\n" \ "</interface>\n" +#ifdef __cplusplus +} +#endif + #endif diff --git a/src/libsystemd-bus/sd-bus.h b/src/libsystemd-bus/sd-bus.h index 08c5e54230..148a99c86f 100644 --- a/src/libsystemd-bus/sd-bus.h +++ b/src/libsystemd-bus/sd-bus.h @@ -28,16 +28,20 @@ #include <sd-id128.h> #include "sd-bus-protocol.h" +#ifdef __cplusplus +extern "C" { +#endif + /* TODO: * - server side * - allow installing match callbacks * - anonymous auth - * - default policy * * Later: * - add page donation logic * - api for appending/reading fixed arrays * - merge busctl into systemctl or so? + * - default policy (allow uid == 0 and our own uid) */ typedef struct sd_bus sd_bus; @@ -165,4 +169,8 @@ int sd_bus_error_copy(sd_bus_error *dest, const sd_bus_error *e); int sd_bus_error_is_set(const sd_bus_error *e); int sd_bus_error_has_name(const sd_bus_error *e, const char *name); +#ifdef __cplusplus +} +#endif + #endif |