Add missing files from last commit.
This commit is contained in:
parent
9312de19ac
commit
f822488656
89 changed files with 18428 additions and 6383 deletions
12
src/device.h
Normal file
12
src/device.h
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
typedef struct device_t
|
||||
{
|
||||
char name[50];
|
||||
void *(*init)();
|
||||
void (*close)(void *priv);
|
||||
void (*speed_changed)(void *priv);
|
||||
} device_t;
|
||||
|
||||
void device_init();
|
||||
void device_add(device_t *d);
|
||||
void device_close_all();
|
||||
void device_speed_changed();
|
||||
Loading…
Reference in a new issue