X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Fcore%2Fdbus-job.h;h=6c2fc0789cb0da2abed32c7b1831e04b19987701;hb=f5b51ea7fcb0b6380c3ceb4d4f3f22f647c6fd32;hp=1ee0a4279397c2e24891b9a86652309a7b6cc658;hpb=5430f7f2bc7330f3088b894166bf3524a067e3d8;p=elogind.git diff --git a/src/core/dbus-job.h b/src/core/dbus-job.h index 1ee0a4279..6c2fc0789 100644 --- a/src/core/dbus-job.h +++ b/src/core/dbus-job.h @@ -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. @@ -22,15 +21,12 @@ along with systemd; If not, see . ***/ -#include - +#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);