chiark / gitweb /
sd-rtnl: fix reading of nla type
[elogind.git] / src / core / dbus-job.h
index 1ee0a4279397c2e24891b9a86652309a7b6cc658..6c2fc0789cb0da2abed32c7b1831e04b19987701 100644 (file)
@@ -1,7 +1,6 @@
 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
 
-#ifndef foodbusjobhfoo
-#define foodbusjobhfoo
+#pragma once
 
 /***
   This file is part of systemd.
   along with systemd; If not, see <http://www.gnu.org/licenses/>.
 ***/
 
-#include <dbus/dbus.h>
-
+#include "sd-bus.h"
 #include "job.h"
 
-void bus_job_send_change_signal(Job *j);
-void bus_job_send_removed_signal(Job *j);
-
-extern const DBusObjectPathVTable bus_job_vtable;
+extern const sd_bus_vtable bus_job_vtable[];
 
-extern const char bus_job_interface[];
+int bus_job_method_cancel(sd_bus *bus, sd_bus_message *message, void *job, sd_bus_error *error);
 
-#endif
+void bus_job_send_change_signal(Job *j);
+void bus_job_send_removed_signal(Job *j);