10 lines
116 B
C
10 lines
116 B
C
|
#ifndef DVT_TYPES_H
|
||
|
#define DVT_TYPES_H
|
||
|
|
||
|
typedef struct {
|
||
|
bool State;
|
||
|
long Time;
|
||
|
}DVT_State_t;
|
||
|
|
||
|
#endif
|