mirror of
https://github.com/AuxXxilium/eudev.git
synced 2024-12-24 02:20:45 +07:00
25 lines
381 B
C
25 lines
381 B
C
/*-*- Mode: C; c-basic-offset: 8 -*-*/
|
|
|
|
#ifndef foosnapshothfoo
|
|
#define foosnapshothfoo
|
|
|
|
typedef struct Snapshot Snapshot;
|
|
|
|
#include "unit.h"
|
|
|
|
typedef enum SnapshotState {
|
|
SNAPSHOT_DEAD,
|
|
SNAPSHOT_ACTIVE
|
|
} SnapshotState;
|
|
|
|
struct Snapshot {
|
|
Meta meta;
|
|
|
|
SnapshotState state;
|
|
bool cleanup:1;
|
|
};
|
|
|
|
extern const UnitVTable snapshot_vtable;
|
|
|
|
#endif
|