rulimine/common/drivers/vbe.h
2022-02-03 10:38:43 +01:00

12 lines
243 B
C

#ifndef __DRIVERS__VBE_H__
#define __DRIVERS__VBE_H__
#include <stdint.h>
#include <stdbool.h>
#include <lib/fb.h>
bool init_vbe(struct fb_info *ret,
uint16_t target_width, uint16_t target_height, uint16_t target_bpp);
#endif