summaryrefslogtreecommitdiff
path: root/src/libelogind/sd-bus/bus-convenience.c
diff options
context:
space:
mode:
authorSven Eden <yamakuzure@gmx.net>2017-12-12 07:54:16 +0100
committerSven Eden <yamakuzure@gmx.net>2017-12-12 07:54:16 +0100
commit20710c92ba65584a6fba036f9a2c3624a6bc2565 (patch)
tree1b8936dc3b5f9fd605a5dc8a820baa95dbcc4203 /src/libelogind/sd-bus/bus-convenience.c
parent5fc9b845038323a4281383b00221852cfdd37a8d (diff)
Prep 229.9: Make all supportable API functions visible.
The process of cleaning up elogind, meaning to mask all bits that are unneeded by elogind, has been finished a while ago. It is therefore time to re-enable all previously masked API functions that elogind can support. This will make it easier for future developers to integrate elogind into their software where they already support systemd-login.
Diffstat (limited to 'src/libelogind/sd-bus/bus-convenience.c')
-rw-r--r--src/libelogind/sd-bus/bus-convenience.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/libelogind/sd-bus/bus-convenience.c b/src/libelogind/sd-bus/bus-convenience.c
index 85c8e3979..e171c53e2 100644
--- a/src/libelogind/sd-bus/bus-convenience.c
+++ b/src/libelogind/sd-bus/bus-convenience.c
@@ -57,7 +57,6 @@ _public_ int sd_bus_emit_signal(
return sd_bus_send(bus, m, NULL);
}
-#if 0 /// UNNEEDED by elogind
_public_ int sd_bus_call_method_async(
sd_bus *bus,
sd_bus_slot **slot,
@@ -94,7 +93,6 @@ _public_ int sd_bus_call_method_async(
return sd_bus_call_async(bus, slot, m, callback, userdata, 0);
}
-#endif // 0
_public_ int sd_bus_call_method(
sd_bus *bus,
@@ -255,7 +253,6 @@ _public_ int sd_bus_reply_method_errno(
return sd_bus_reply_method_error(call, &berror);
}
-#if 0 /// UNNEEDED by elogind
_public_ int sd_bus_reply_method_errnof(
sd_bus_message *call,
int error,
@@ -283,7 +280,6 @@ _public_ int sd_bus_reply_method_errnof(
return sd_bus_reply_method_error(call, &berror);
}
-#endif // 0
_public_ int sd_bus_get_property(
sd_bus *bus,
@@ -419,7 +415,6 @@ fail:
return sd_bus_error_set_errno(error, r);
}
-#if 0 /// UNNEEDED by elogind
_public_ int sd_bus_get_property_strv(
sd_bus *bus,
const char *destination,
@@ -512,7 +507,6 @@ _public_ int sd_bus_set_property(
fail:
return sd_bus_error_set_errno(error, r);
}
-#endif // 0
_public_ int sd_bus_query_sender_creds(sd_bus_message *call, uint64_t mask, sd_bus_creds **creds) {
sd_bus_creds *c;