diff options
Diffstat (limited to 'src/libsystemd-bus/sd-bus.h')
-rw-r--r-- | src/libsystemd-bus/sd-bus.h | 10 |
1 files changed, 9 insertions, 1 deletions
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 |