20 lines
479 B
C
20 lines
479 B
C
#ifndef VasEBoot_VESA_MODE_TABLE_HEADER
|
|
#define VasEBoot_VESA_MODE_TABLE_HEADER 1
|
|
|
|
#include <VasEBoot/types.h>
|
|
|
|
#define VasEBoot_VESA_MODE_TABLE_START 0x300
|
|
#define VasEBoot_VESA_MODE_TABLE_END 0x373
|
|
|
|
struct VasEBoot_vesa_mode_table_entry {
|
|
VasEBoot_uint16_t width;
|
|
VasEBoot_uint16_t height;
|
|
VasEBoot_uint8_t depth;
|
|
};
|
|
|
|
extern struct VasEBoot_vesa_mode_table_entry
|
|
VasEBoot_vesa_mode_table[VasEBoot_VESA_MODE_TABLE_END
|
|
- VasEBoot_VESA_MODE_TABLE_START + 1];
|
|
|
|
#endif
|