wip video device

This commit is contained in:
2025-09-21 17:46:19 +02:00
parent 724eec9241
commit 2be15dc7c9
12 changed files with 3319 additions and 28 deletions
+13
View File
@@ -0,0 +1,13 @@
#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 */