1
0
mirror of https://github.com/systemd/systemd.git synced 2024-10-28 20:25:38 +03:00
systemd/milestone.h
2010-01-23 01:52:57 +01:00

24 lines
368 B
C

/*-*- Mode: C; c-basic-offset: 8 -*-*/
#ifndef foomilestonehfoo
#define foomilestonehfoo
typedef struct Milestone Milestone;
#include "name.h"
typedef enum MilestoneState {
MILESTONE_DEAD,
MILESTONE_ACTIVE
} MilestoneState;
struct Milestone {
Meta meta;
MilestoneState state;
};
extern const NameVTable milestone_vtable;
#endif