]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/core/target.h
tree-wide: remove Lennart's copyright lines
[thirdparty/systemd.git] / src / core / target.h
CommitLineData
53e1b683 1/* SPDX-License-Identifier: LGPL-2.1+ */
c2f1db8f 2#pragma once
c22cbe26 3
57b7a260
FS
4#include "unit.h"
5
c22cbe26
LP
6typedef struct Target Target;
7
c22cbe26 8struct Target {
ac155bb8 9 Unit meta;
c22cbe26 10
a16e1123 11 TargetState state, deserialized_state;
c22cbe26
LP
12};
13
87f0e418 14extern const UnitVTable target_vtable;
57b7a260
FS
15
16DEFINE_CAST(TARGET, Target);