15 lines
314 B
C
15 lines
314 B
C
#ifndef __DRIVERS__VBE_H__
|
|
#define __DRIVERS__VBE_H__
|
|
|
|
#include <stdint.h>
|
|
#include <stddef.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);
|
|
|
|
struct fb_info *vbe_get_mode_list(size_t *count);
|
|
|
|
#endif
|