Systemd/src/core/target.h

17 lines
261 B
C
Raw Normal View History

/* SPDX-License-Identifier: LGPL-2.1+ */
#pragma once
2010-01-26 19:06:50 +01:00
#include "unit.h"
2010-01-26 19:06:50 +01:00
typedef struct Target Target;
struct Target {
Unit meta;
2010-01-26 19:06:50 +01:00
2010-04-21 03:27:44 +02:00
TargetState state, deserialized_state;
2010-01-26 19:06:50 +01:00
};
2010-01-26 21:39:06 +01:00
extern const UnitVTable target_vtable;
DEFINE_CAST(TARGET, Target);