mirror of
https://github.com/AuxXxilium/eudev.git
synced 2024-12-26 21:55:44 +07: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 "name.h"
|
||
|
|
||
|
typedef enum TargetState {
|
||
|
TARGET_DEAD,
|
||
|
TARGET_ACTIVE
|
||
|
} TargetState;
|
||
|
|
||
|
struct Target {
|
||
|
Meta meta;
|
||
|
|
||
|
TargetState state;
|
||
|
};
|
||
|
|
||
|
extern const NameVTable target_vtable;
|
||
|
|
||
|
#endif
|