Show
Ignore:
Timestamp:
05/17/09 10:39:07 (3 years ago)
Author:
mwhitworth
Message:

Start updating Xynth to use dynamic libraries for drivers, remove old configuration code and replace with registry equivalents.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • Whitix/trunk/user/xynth/src/server/server.h

    r910 r2049  
    5959        char *device; 
    6060 
    61         int (*server_init) (s_server_conf_t *cfg); 
     61        int (*server_init) (s_server_t* server); 
    6262        void (*server_uninit) (void); 
     63         
     64        /* Returns 1 if there is a device the driver can use, 0 otherwise. */ 
     65        int (*probe)(s_server_t* server); 
    6366 
    6467        void *driver_data;