]> git.ipfire.org Git - thirdparty/systemd.git/blobdiff - src/core/dbus-job.h
mkosi: update arch commit reference
[thirdparty/systemd.git] / src / core / dbus-job.h
index 1ee0a4279397c2e24891b9a86652309a7b6cc658..6f005811cb2ec0091daef61fbfc3cf3827c0fbc2 100644 (file)
@@ -1,36 +1,20 @@
-/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
+/* SPDX-License-Identifier: LGPL-2.1-or-later */
+#pragma once
 
-#ifndef foodbusjobhfoo
-#define foodbusjobhfoo
+#include "sd-bus.h"
 
-/***
-  This file is part of systemd.
+#include "unit.h"
+#include "bus-object.h"
 
-  Copyright 2010 Lennart Poettering
+extern const sd_bus_vtable bus_job_vtable[];
+extern const BusObjectImplementation job_object;
 
-  systemd is free software; you can redistribute it and/or modify it
-  under the terms of the GNU Lesser General Public License as published by
-  the Free Software Foundation; either version 2.1 of the License, or
-  (at your option) any later version.
-
-  systemd is distributed in the hope that it will be useful, but
-  WITHOUT ANY WARRANTY; without even the implied warranty of
-  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-  Lesser General Public License for more details.
-
-  You should have received a copy of the GNU Lesser General Public License
-  along with systemd; If not, see <http://www.gnu.org/licenses/>.
-***/
-
-#include <dbus/dbus.h>
-
-#include "job.h"
+int bus_job_method_cancel(sd_bus_message *message, void *job, sd_bus_error *error);
+int bus_job_method_get_waiting_jobs(sd_bus_message *message, void *userdata, sd_bus_error *error);
 
 void bus_job_send_change_signal(Job *j);
+void bus_job_send_pending_change_signal(Job *j, bool including_new);
 void bus_job_send_removed_signal(Job *j);
 
-extern const DBusObjectPathVTable bus_job_vtable;
-
-extern const char bus_job_interface[];
-
-#endif
+int bus_job_coldplug_bus_track(Job *j);
+int bus_job_track_sender(Job *j, sd_bus_message *m);