diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-06-06 21:00:48 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-06-06 21:00:48 -0400 |
commit | 222ffdb004183ee1a77d72e5bf800f5ff4ff332d (patch) | |
tree | 8e46035b48c36937f522e514414b95e8be549a02 /src/libcore/dbus-scope.h | |
parent | 653c74a5b096525af69fbe55676bcdf0ea4addb9 (diff) |
./move.sh
Diffstat (limited to 'src/libcore/dbus-scope.h')
-rw-r--r-- | src/libcore/dbus-scope.h | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/src/libcore/dbus-scope.h b/src/libcore/dbus-scope.h new file mode 100644 index 0000000000..f96ddef0cf --- /dev/null +++ b/src/libcore/dbus-scope.h @@ -0,0 +1,31 @@ +#pragma once + +/*** + This file is part of systemd. + + Copyright 2013 Lennart Poettering + + 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 <systemd/sd-bus.h> + +#include "unit.h" + +extern const sd_bus_vtable bus_scope_vtable[]; + +int bus_scope_set_property(Unit *u, const char *name, sd_bus_message *i, UnitSetPropertiesMode mode, sd_bus_error *error); +int bus_scope_commit_properties(Unit *u); + +int bus_scope_send_request_stop(Scope *s); |