Re-organisation of video emulation.
This commit is contained in:
parent
b9062a1d0c
commit
58085bcc87
86 changed files with 8087 additions and 7229 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in a new issue