Files
Limine/common/drivers/gop.h
cospplredman ba5c0004e6 fixed header guard names
made them more standard compliant
2024-03-20 03:06:55 +01:00

19 lines
335 B
C

#ifndef DRIVERS__GOP_H__
#define DRIVERS__GOP_H__
#if defined (UEFI)
#include <stdint.h>
#include <stddef.h>
#include <stdbool.h>
#include <lib/fb.h>
void init_gop(struct fb_info **ret, size_t *_fbs_count,
uint64_t target_width, uint64_t target_height, uint16_t target_bpp);
extern bool gop_force_16;
#endif
#endif