Re-organisation of video emulation.

This commit is contained in:
TomW 2013-06-24 20:42:35 +01:00
commit 58085bcc87
86 changed files with 8087 additions and 7229 deletions

View file

@ -2,11 +2,13 @@ typedef struct device_t
{
char name[50];
void *(*init)();
void (*close)(void *priv);
void (*speed_changed)(void *priv);
void (*close)(void *p);
void (*speed_changed)(void *p);
int (*add_status_info)(char *s, int max_len, void *p);
} device_t;
void device_init();
void device_add(device_t *d);
void device_close_all();
void device_speed_changed();
char *device_add_status_info(char *s, int max_len);