| 1 | #ifndef DRIVERS__VBE_H__ |
| 2 | #define DRIVERS__VBE_H__ |
| 3 | |
| 4 | #include <stdint.h> |
| 5 | #include <stddef.h> |
| 6 | #include <stdbool.h> |
| 7 | #include <lib/fb.h> |
| 8 | |
| 9 | bool init_vbe(struct fb_info *ret, |
| 10 | uint16_t target_width, uint16_t target_height, uint16_t target_bpp); |
| 11 | |
| 12 | struct fb_info *vbe_get_mode_list(size_t *count); |
| 13 | |
| 14 | #endif |
