Functions | |
const DrvInt_t * | DriverFirst (void) |
Returns the first driver in the list. | |
const DrvInt_t * | DriverNext (void) |
Returns the next driver in the list. | |
const DrvInt_t * | DriverSearch (const char *DrvName) |
Serach for a specific driver. | |
void | DriverPrintInfo (const DrvInt_t *DrvPtr, int Mode) |
Print driver informations to stdout. | |
int | DriverMaxBlock (void) |
Give the size of larger data block in the driver list. | |
int | DriverMaxSize (void) |
Give the size of larger total data block in the driver list. |
const DrvInt_t* DriverFirst | ( | void | ) |
Returns the first driver in the list.
int DriverMaxBlock | ( | void | ) |
Give the size of larger data block in the driver list.
int DriverMaxSize | ( | void | ) |
Give the size of larger total data block in the driver list.
const DrvInt_t* DriverNext | ( | void | ) |
Returns the next driver in the list.
void DriverPrintInfo | ( | const DrvInt_t * | DrvPtr, | |
int | Mode | |||
) |
Print driver informations to stdout.
DrvPtr | A driver pointer. | |
Mode | Can be one value between: SHORT_INFO_MODE, LONG_INFO_MODE, FULL_INFO_MODE. |
const DrvInt_t* DriverSearch | ( | const char * | DrvName | ) |
Serach for a specific driver.
DrvName | The driver name to search for. |
WARNING: this functions makes use of DriverFirst() and DriverNext() to browse the driver list, so it is not a good idea calling DriverSearch() in the middle of a driver list scan.