chiark / gitweb /
add fixme todo list
[elogind.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