os/sysroot/usr/include/grub/text_fb_info.h

13 lines
173 B
C
Raw Normal View History

2019-02-09 14:33:29 -06:00
#ifndef GRUB_TEXT_FB_INFO_H
#define GRUB_TEXT_FB_INFO_H
#include <stdint.h>
typedef struct {
char* address;
uint32_t width;
uint32_t height;
} text_fb_info;
#endif