Get a table of your driver's video capture functions
int devg_get_vcapfuncs (disp_adapter_t *ctx,
                       disp_vcapfuncs_t *funcs,
                       int tabsize);
A driver that contains a video capture module must provide an entry point called devg_get_vcapfuncs(). The graphics framework calls it to get a table of your driver's video capture functions.
Use the DISP_ADD_FUNC() macro to add function pointers to the table. It checks the tabsize argument and adds a function pointer only if there's space for it in the table.
|  | This entry point is optional. A driver may not support video capture. | 
Neutrino
| Safety: | |
|---|---|
| Interrupt handler | Not applicable | 
| Signal handler | Not applicable | 
| Thread | Not applicable |