1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
#ifndef VGA_H #define VGA_H #include <efi.h> #include <efilib.h> typedef struct _FBinfo { int width; int height; } FBinfo; void * EFIAPI SetVideoMode(int width, int height, int bitdepth); #endif // VGA_H