17 lines
230 B
C
17 lines
230 B
C
|
|
#ifndef USER_VIDEO_H
|
||
|
|
#define USER_VIDEO_H
|
||
|
|
|
||
|
|
#include <stdint.h>
|
||
|
|
|
||
|
|
#define FBIOGET_INFO 0x1
|
||
|
|
|
||
|
|
typedef struct {
|
||
|
|
uint32_t width;
|
||
|
|
uint32_t height;
|
||
|
|
uint32_t pitch;
|
||
|
|
uint32_t bpp;
|
||
|
|
uint32_t fb_size;
|
||
|
|
} fb_info_t;
|
||
|
|
|
||
|
|
|
||
|
|
#endif
|