13 lines
270 B
C
13 lines
270 B
C
#include "types.h"
|
|
|
|
#ifndef VIDEO_H
|
|
#define VIDEO_H
|
|
|
|
VideoDevice video_init(char *name, unsigned int preferred_width,
|
|
unsigned int preferred_height);
|
|
|
|
void video_read(VideoDevice device);
|
|
|
|
void video_free(VideoDevice device);
|
|
|
|
#endif /* VIDEO_H */ |