Details | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 20 | pmbaty | 1 | #ifndef _DEVLIST_H_ |
| 2 | #define _DEVLIST_H_ |
||
| 3 | |||
| 4 | #include "brender/br_types.h" |
||
| 5 | |||
| 6 | br_error AddRequestedDrivers(void); |
||
| 7 | |||
| 8 | br_error devAdd(br_device** pdev, br_device_begin_fn* dev_begin, char* args, br_image* image); |
||
| 9 | |||
| 10 | br_error BrDevAdd(br_device** pdev, char* image, char* args); |
||
| 11 | |||
| 12 | br_error BrDevAddStatic(br_device** pdev, br_device_begin_fn* dev_begin, char* args); |
||
| 13 | |||
| 14 | br_error BrDevCheckAdd(br_device** pdev, char* name, char* args); |
||
| 15 | |||
| 16 | br_error BrDevAddConfig(char* config); |
||
| 17 | |||
| 18 | br_error BrDevRemove(br_device* dev); |
||
| 19 | |||
| 20 | br_error BrDevFind(br_device** pdev, char* pattern); |
||
| 21 | |||
| 22 | br_error BrDevFindMany(br_device** devices, br_int_32* ndevices, br_int_32 max_devices, char* pattern); |
||
| 23 | |||
| 24 | br_error BrDevCount(br_int_32* ndevices, char* pattern); |
||
| 25 | |||
| 26 | br_error BrDevContainedFind(br_object** ph, br_token type, char* pattern, br_token_value* tv); |
||
| 27 | |||
| 28 | br_error BrDevContainedFindMany(br_object** objects, br_int_32 max_objects, br_int_32* pnum_objects, br_token type, char* pattern, br_token_value* tv); |
||
| 29 | |||
| 30 | br_error BrDevContainedCount(br_int_32* pcount, br_token type, char* pattern, br_token_value* tv); |
||
| 31 | |||
| 32 | #endif |