os/sysroot/usr/include/grub/text_fb_info.h
2019-05-24 09:51:45 -05:00

13 lines
173 B
C

#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