mirror of
https://github.com/systemd/systemd.git
synced 2024-11-14 15:21:37 +03:00
24 lines
335 B
C
24 lines
335 B
C
/*-*- Mode: C; c-basic-offset: 8 -*-*/
|
|
|
|
#ifndef footargethfoo
|
|
#define footargethfoo
|
|
|
|
typedef struct Target Target;
|
|
|
|
#include "unit.h"
|
|
|
|
typedef enum TargetState {
|
|
TARGET_DEAD,
|
|
TARGET_ACTIVE
|
|
} TargetState;
|
|
|
|
struct Target {
|
|
Meta meta;
|
|
|
|
TargetState state;
|
|
};
|
|
|
|
extern const UnitVTable target_vtable;
|
|
|
|
#endif
|