summaryrefslogtreecommitdiff
path: root/src/libelogind/sd-bus/bus-convenience.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/libelogind/sd-bus/bus-convenience.c')
-rw-r--r--src/libelogind/sd-bus/bus-convenience.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/libelogind/sd-bus/bus-convenience.c b/src/libelogind/sd-bus/bus-convenience.c
index dfd82e746..59c7c86ae 100644
--- a/src/libelogind/sd-bus/bus-convenience.c
+++ b/src/libelogind/sd-bus/bus-convenience.c
@@ -58,6 +58,8 @@ _public_ int sd_bus_emit_signal(
return sd_bus_send(bus, m, NULL);
}
+/// UNNEEDED by elogind
+#if 0
_public_ int sd_bus_call_method_async(
sd_bus *bus,
sd_bus_slot **slot,
@@ -94,6 +96,7 @@ _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,
@@ -249,6 +252,8 @@ _public_ int sd_bus_reply_method_errno(
return sd_bus_reply_method_error(call, &berror);
}
+/// UNNEEDED by elogind
+#if 0
_public_ int sd_bus_reply_method_errnof(
sd_bus_message *call,
int error,
@@ -276,6 +281,7 @@ _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,
@@ -314,6 +320,8 @@ _public_ int sd_bus_get_property(
return 0;
}
+/// UNNEEDED by elogind
+#if 0
_public_ int sd_bus_get_property_trivial(
sd_bus *bus,
const char *destination,
@@ -350,6 +358,7 @@ _public_ int sd_bus_get_property_trivial(
return 0;
}
+#endif // 0
_public_ int sd_bus_get_property_string(
sd_bus *bus,
@@ -394,6 +403,8 @@ _public_ int sd_bus_get_property_string(
return 0;
}
+/// UNNEEDED by elogind
+#if 0
_public_ int sd_bus_get_property_strv(
sd_bus *bus,
const char *destination,
@@ -476,6 +487,7 @@ _public_ int sd_bus_set_property(
return sd_bus_call(bus, m, 0, error, NULL);
}
+#endif // 0
_public_ int sd_bus_query_sender_creds(sd_bus_message *call, uint64_t mask, sd_bus_creds **creds) {
sd_bus_creds *c;