]> git.ipfire.org Git - people/ms/systemd.git/blob - milestone.h
332fbe44c3701b4c071cc418a9a5a91015ed8b88
[people/ms/systemd.git] / milestone.h
1 /*-*- Mode: C; c-basic-offset: 8 -*-*/
2
3 #ifndef foomilestonehfoo
4 #define foomilestonehfoo
5
6 typedef struct Milestone Milestone;
7
8 #include "name.h"
9
10 typedef enum MilestoneState {
11 MILESTONE_DEAD,
12 MILESTONE_ACTIVE
13 } MilestoneState;
14
15 struct Milestone {
16 Meta meta;
17
18 MilestoneState state;
19 };
20
21 extern const NameVTable milestone_vtable;
22
23 #endif