#ifndef VIDEO_H #define VIDEO_H #include "driver.h" typedef struct { driver_t base; } video_t; typedef struct { driver_vtable_t base; } video_vtable_t; void video_init( video_t *video, interrupt_t *interrupt, void *context ); void video_activate( void *obj ); void video_deactivate( void *obj ); void video_deinit( void *obj ); void video_print_info( void *obj ); #endif // VIDEO_H