aboutsummaryrefslogtreecommitdiffstats
path: root/bootloader/vga.h
blob: ba0843ca7ac70ebf8c32651f5ca70952260653a3 (plain) (blame)
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