Add missing files from last commit.

This commit is contained in:
TomW 2013-05-27 19:56:33 +01:00
commit f822488656
89 changed files with 18428 additions and 6383 deletions

12
src/device.h Normal file
View 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();